
js
ZQ960214
这个作者很懒,什么都没留下…
展开
-
js计算当前时间和传入时间的差值
未加非空处理 function timeQuantum(time){ time=new Date(parseInt(time));//获取传入时间 并将其转化为date型 var nowTime=new Date();//获取当前时间 var timeDifference=time.getTime()-nowTime.getTime();//时间差的毫秒数 ...原创 2018-08-21 12:06:15 · 3315 阅读 · 0 评论 -
js隐私信息转换
//str:处理的字符串 frontLen前面显示位数 endLen后面显示位数 isHide是否隐藏 不为0隐藏 type 1身份证 2手机号 function plusToXing (str,type,isHide) { debugger; if ((str != 0 && !str) || str == ‘null’) { retu...原创 2018-08-21 12:10:12 · 463 阅读 · 0 评论 -
js 当页面在一定时间没有操作后跳转页面
**转载 2018-10-28 01:40:54 · 1869 阅读 · 0 评论