I can't get the .delay method working in jQuery:(我无法在.delay方法:)
.delay
$.delay(3000); // not working $(queue).delay(3000); // not working
You can also just delay some operation this way:(您也可以通过这种方式延迟某些操作:)
setTimeout(function (){ // Something you want delayed. }, 5000); // How long do you want the delay to be (in milliseconds)?
1.4m articles
1.4m replys
5 comments
57.0k users