本文主要是介绍一个简单的判断抢购时间是否到达的js函数,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
原型函数,功能很简单,找到时钟的id,计算数值,到达抢购时间时执行任务。
function nwt() {var str=$('#deal_expiry_timer_e3cdcd2a').text();
var out=str.match(/\d+/g);console.log(out);
var h=parseInt(out[0]),m=parseInt(out[1]),s=parseInt(out[2]);
console.log(h+'#'+m+'#'+s);var calc=h*3600+m*60+s;console.log(calc);
if(calc==0){} else {console.log('wait');}var t=setTimeout('nwt()',2000);}
nwt();
这篇关于一个简单的判断抢购时间是否到达的js函数的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!