在线工具

2017-07-12     10

最近在网上看到别人的标题失去焦点会变,觉得很好玩 就F12 搬运过来了 其实就是一个挺好玩的JS脚本,获得焦点时即恢复正常标题,失去焦点显示指定的标题,只需要在底部加入一段代码即可让你的网页标题动起来~ 动次打次动次打次~下面为大家分享下代码吧~ javascript // 来源:http://www.aeink.com/96.html

2017-07-20     23

html function WdatePicker() { WdatePicker({ dateFmt: 'yyyy-MM', isShowToday: false, isShowClear: false }); }

2017-07-28     26

js替换所有的回车\r\n换行符 javascript //替换全部的回车换行 function TransferString(content) { var string = content; string=string.replace(/\r\n/g,"") string=string.replace(/\n/g,""); return string; } js替换首个匹配到的

2017-08-12     18

今天使用了KindEditor,但是由于我是聊天界面,所以点击表情包的时候,表情包弹窗在下面,我想调位置. 解决方法: 打开kindeditor-min.js文件,搜索下面这串代码: javascript b.z && b.div.css({position: "absolute", left: b.x, bottom: b.y, "z-index": b.z}); 修改即可

2017-09-05     66

html Document window.onload = function(){ document.getElementById('area').addEventListener('keydown',function(e){

2017-09-07     53

javascript /*可获取用户,通过哪个关键词访问该页,可自行添加SOGOU,SOSO,有道等搜索引擎*/ var refer=document.referrer; var sosuo=refer.split(".")[1]; var grep=null; var str=null; var keyword=null; switch(sosuo){ case "baidu": gre

2017-09-16     58

javascript 判断两个日期大小,可以利用JS内置函数Date先把日期格式化,然后用getTime()方法获得毫秒数,然后进行比较 js var a = new Date("2018-01-12"); var date1 = a.getTime(); var b = new Date("2019-12-31"); var date2 = b.getTime(

2017-10-22     47

js for(var i=0;i

2017-11-16     39

js function copyUrl2() { var Url2=document.getElementById("biao1").innerText; var oInput = document.createElement('input'); oInput.value = Url2; document.body.appe

2017-11-30     30

html function addfavorite() { if (document.all) { window.external.addFavorite('https://cx.lmcjl.com','陈建霖'); } else if (window.sidebar) { window.sidebar.addPanel("https://cx.lmcjl.com", "陈建霖", "");

2018-03-08     6

js //获取域名 host = window.location.host; host2=document.domain; //获取页面完整地址 url = window.location.href; document.write("host="+host) document.write("host2="+host2) document.write("url="+url)

2018-03-11     5

javascript Date.prototype.format = function() { var s = ''; var mouth = (this.getMonth() + 1)>=10?(this.getMonth() + 1):('0'+(this.getMonth() + 1)); var day = this.getDate()>=1