I am working on a auto search function for a site.
It uses ajax to query an api.
At the moment after 3 characters are entered it will search on every key press.
What I want is
Case1:
User enters tes
2 seconds pass
search performed
Case2:
User enters tes
1 second pass
user presses t
2 seconds pass
search is performed on test
Case3:
User enters tes
1 second passes
user presses t
1.5 seconds pass
user presses i
1.5 seconds pass
user presses n
1.5 seconds pass
user presses g
2 seconds pass
search in performed on testing
so as you can see,
the search action is only performed when there has been no key presses(or pastes ect) in the two seconds following a key press.
my basic idea is to.
on keydown
Call a function that sets a timeout,
the function also sets a variable containing the last entry in the textbox.
when the timeout expires it checks the value in the box to see if it matches the value in the variable.
If they match then there has been no change.
So do the search
If they dont then do nothing, because the timeout from the subsequent key press will be following to do the same check.
Is this the only/best way to do this?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…