用户停止在Jquery中输入5秒钟后,有什么函数可以调用?谢谢 最佳答案 function afterTypeProcess(){ //Dosomething } var timeid; $("input").keyup(function(){ clearTimeout(timeid); timeid = setTimeout(afterTypeProcess, 5000); });