admin管理员组文章数量:1343311
I'm currently developing a live search for my website and I want to decrease some unnecessary request with some simple jQuery (of course I have a back-end-flood-control). I've got a keydown-event-listener for my search-field. This listener currenty only fires the ajax mand for the PHP search-function if val().length
is >= 3.
But now I want an additional condition. So when the length is >= 3, I want to wait for about 0.5s or so if the user is performing another keypress. If he does, the function should not be called and I want the listener to wait another 0.5s and wait again for more user-input, and so on. How do I realize a function like that?
I'm currently developing a live search for my website and I want to decrease some unnecessary request with some simple jQuery (of course I have a back-end-flood-control). I've got a keydown-event-listener for my search-field. This listener currenty only fires the ajax mand for the PHP search-function if val().length
is >= 3.
But now I want an additional condition. So when the length is >= 3, I want to wait for about 0.5s or so if the user is performing another keypress. If he does, the function should not be called and I want the listener to wait another 0.5s and wait again for more user-input, and so on. How do I realize a function like that?
Share Improve this question edited May 30, 2020 at 16:35 Brian Tompsett - 汤莱恩 5,89372 gold badges61 silver badges133 bronze badges asked Feb 14, 2014 at 14:21 user2655665user2655665 2571 gold badge4 silver badges11 bronze badges 3-
2
In the event handler use clearTimeout to cancel any previous
0.5
second wait, and setTimeout to start a new wait, and have the timeout invoke the rest of what you want. – Paul S. Commented Feb 14, 2014 at 14:23 - Wow, that seems easy. I'll try that. So the event handler should always first perform a clearTimeout()? – user2655665 Commented Feb 14, 2014 at 14:26
- Pretty much, see the code in my answer for some guidance. – Mild Fuzz Commented Feb 14, 2014 at 14:35
1 Answer
Reset to default 12var timeout;
$('#yousearchbox').on('keyup',function(){
//if you already have a timout, clear it
if(timeout){ clearTimeout(timeout);}
//start new time, to perform ajax stuff in 500ms
timeout = setTimeout(function() {
//your ajax stuff
},500);
})
本文标签: javascriptjQuery keypress event wait 05 seconds for another userkeypressStack Overflow
版权声明:本文标题:javascript - jQuery keypress event wait 0.5 seconds for another user-keypress - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743725417a2528284.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论