admin管理员组文章数量:1313616
So I am calling an AJAX request on every keyup
and paste
event in jQuery on a textbox:
$("#server-label").bind("keyup paste", function() {
$.ajax()...
});
The problem is this is just too many AJAX requests if the user rapidly presses keys. What is the best way to sort of wait until the users stops typing for a bit (say 500ms) before calling the AJAX request. Basically don't make the AJAX request until no keys or paste events fired for 500ms.
Thanks.
So I am calling an AJAX request on every keyup
and paste
event in jQuery on a textbox:
$("#server-label").bind("keyup paste", function() {
$.ajax()...
});
The problem is this is just too many AJAX requests if the user rapidly presses keys. What is the best way to sort of wait until the users stops typing for a bit (say 500ms) before calling the AJAX request. Basically don't make the AJAX request until no keys or paste events fired for 500ms.
Thanks.
Share Improve this question asked May 5, 2012 at 0:29 JustinJustin 45.4k83 gold badges213 silver badges310 bronze badges1 Answer
Reset to default 13Try using setTimeout()
and a timer
var to keep track of it:
var t;
$("#server-label").on("keyup paste", function() {
clearTimeout(t);
t = setTimeout(function() {
$.ajax({/*[...]*/});
//...
}, 500);
});
You can also use throttle or debounce but I don't think it'd be necessary if you wrap your code inside a function object or string to pass to the setTimeout()
function.
本文标签: javascriptThrottle AJAX Request On KeyUp and Paste EventsStack Overflow
版权声明:本文标题:javascript - Throttle AJAX Request On KeyUp and Paste Events - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1741929678a2405501.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论