我正在使用Ajax提交有关keyup的表单。
表单自动提交后,页面上将显示结果
success: function (response){
$("#search_results<?php echo $HoursID ?>").html(response);
setTimeout(response, 1500);
这里的超时不起作用,我错过了什么?
答案 0 :(得分:2)
setTimeout()
函数的正确用法是:
success: function(response){
setTimeout(function(){
$("#search_results<?php echo $HoursID ?>").html(response);
}, 1500);
}
有关更多信息,请查看: