一个简单的推断抢购时间是否到达的js函数
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了一个简单的推断抢购时间是否到达的js函数相关的知识,希望对你有一定的参考价值。
原型函数,功能非常easy,找到时钟的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函数的主要内容,如果未能解决你的问题,请参考以下文章