摘要:
MUI的日期选择器的使用 // 日期选择器 //生日选择器(不会超过今年) function fdPicker1(id) { var year=new Date().getFullYear(); var dtPicker = new mui.DtPicker({ "type": "date", "b 阅读全文
摘要:
//测试token //获取token function setToken(data){ var storage = window.localStorage; if(!storage){ alert("浏览器不支持localstorage"); return false; } var token = 阅读全文
摘要:
mui("body").on('tap','#self',function(){ if(window.localStorage.length == 0) { window.location.href="login.html"; } else { window.location.href="m-per 阅读全文
摘要:
function log() { //清空缓存 window.localStorage.clear(); window.location.href="login.html"; } 阅读全文
摘要:
验证码倒计时函数 var wait = 60; function time(o) { if(wait == 0) { o.removeAttribute("disabled"); o.value = "获取验证码"; wait = 60; } else { o.setAttribute("disab 阅读全文
摘要:
页面里面的调用 Data为接口 只需要获得时间差即可 var date1=new Date(data.display_begin_at); //开始时间 var date2=new Date(data.display_end_at); //结束时间 var date3=(date2.getTime( 阅读全文
摘要:
阅读全文
摘要:
BPM.blockUI({ target: $("#blockAddDiv"), boxed: true, message: FeekongLan.label.loadmsg });//增加锁定 var pattern = /^([1-9]{1})(\d{14}|\d{18})$/, str = $ 阅读全文
摘要:
<input type="text" placeholder="请输入整数" onkeyup="this.value=this.value.replace(/\D/g,'')"/> 阅读全文
摘要:
Input框改placeholder中字体的颜色 input::-webkit-input-placeholder { color: #ccc; font-size: 12px; } 阅读全文
摘要:
第一种:需要添加好友才可以访问 <a href="http://wpa.qq.com/msgrd?v=3&uin=317985559&site=qq&menu=yes" target="_blank">123 </a> 第二种:不需要添加好友即可访问 上网去搜吧,小臂崽子 阅读全文
摘要:
只针对谷歌 width: 100%; //height: 58px; overflow:hidden; text-overflow:ellipsis; display: -webkit-box; -webkit-box-orient: vertical; //三行 -webkit-line-clam 阅读全文
摘要:
如果网站结束 不对页面进行处理,当浏览器的窗口缩小的时候,页面右侧会出现留白: 解决方案:针对整个页面的元素看看最宽的子元素是多宽(minWidth),给整个页面(body下面)一个div,给这个div一个min-height:minWidth 阅读全文