Every line of 'jquery wait 1 second' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your JavaScript code is secure.
148 function time(that, wait){ 149 if (wait == 0) { 150 $(that).removeClass('disabled').prop('disabled',false); 151 $(that).html('重新发送验证码'); 152 } else { 153 $(that).html(wait+'秒后重新发送'); 154 wait--; 155 setTimeout(function(){ 156 time(that, wait); 157 }, 1000); 158 } 159 }
168 async function wait(time) { 169 return new Promise((resolve) => { 170 setTimeout(resolve, time) 171 }) 172 }
4 public async wait(time: number) { 5 setTimeout( 6 () => new Promise((resolve) => { 7 resolve() 8 }), time) 9 }
147 export async function waitFor(milliseconds: number): Promise { 148 /* istanbul ignore next */ 149 return new Promise(resolve => setTimeout(() => resolve(), milliseconds)); 150 }
88 function waitFor(start, ival, done) { 89 setTimeout(function () { 90 if (done()) return 91 var clear = setInterval(function () { 92 if (done()) { 93 clearInterval(clear) 94 } 95 }, ival) 96 }, start) 97 }
66 (function wait() { setTimeout(wait, 5000) })();
66 async function wait(ms) { 67 return new Promise(resolve => setTimeout(resolve, ms)); 68 }
209 function waitForElement(selector, callback) { 210 waitFor(function() { 211 return !!$(selector).length; 212 }, callback); 213 }
1 async function wait(duration) { 2 return new Promise((resolve, reject) => { 3 setTimeout(() => { 4 resolve() 5 }, duration) 6 }) 7 }
41 function waitForElement(selector, callback) { 42 if (document.querySelector(selector)) { 43 return callback() 44 } else { 45 setTimeout(waitForElement.bind(this, selector, callback), 300) 46 } 47 }