在公司开发微信红包过程中用过一些函数
摘要:// 阻止在非微信打开var isWeixin=function(ua) { ua = ua || navigator.userAgent.toLowerCase(); if (ua.match(/MicroMessenger/i) == "micromessenger") { ...
阅读全文
延迟函数
摘要:var delayFn={ flag:+new Date().getTime(), mt:null, set:function(fn,delaytime){ var self=this, now=+new Date().getTime(), ...
阅读全文