프로토타입 함수, 함수는 매우 간단합니다. 시계의 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();