gpt4 book ai didi

jquery - jQuery ajax 延迟数据加载 2 秒

转载 作者:行者123 更新时间:2023-11-30 23:54:19 24 4
gpt4 key购买 nike

我通过 jQuery ajax 在 div 容器中加载搜索结果。我希望在 2 秒延迟后或用户在文本框中输入至少 3 个字母/字符进行搜索后向用户显示结果。我该怎么做?

jQuery 代码:

$(".bsearch").keydown(function() {
//create post data
var postData = {
"search" : $(this).val()
};

//make the call
$.ajax({
type: "POST",
url: "quotes_in.php",
data: postData,
success: function(response){
$("#left").html(response);
$("div#smore").hide();
}
});

最佳答案

使用此功能:

setTimeout(function() {
$('#left').html(response);
}, 2000);

关于jquery - jQuery ajax 延迟数据加载 2 秒,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3497700/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com