<选择>标签重新发布选择>
使用 ExtJS 多次尝试失败后,我现在决定使用 javascript。要求是在选择标签中辅助组合框。如果列表包含 aa,aaa,aab,abc,bac,cba 那么如果我连续输入 'ab' 那么它将选择“abc”。而如果我输入“a”时间间隙,然后输入“b”,它将选择“bac”而不是“abc”。 谁能告诉我在js中是否可以得到我想要的东西?如果不是js,在Jquery中是否可能。请忽略前面的重复项。
After several failed attempts using ExtJS I have now decided to use javascript.The requirement is to assist a combo box in select tag.If the list contains aa,aaa,aab,abc,bac,cba then if I type 'ab' continuously then it will select 'abc'.Whereas if I type 'a' time gap and then 'b' it will select 'bac' instead of 'abc'. Can anyone tell me whether its possible in js to get what I want?If not js is it possible in Jquery.Please ignore the previous duplicates.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是可能的。 您需要跟踪按键事件何时触发。 捕获输入“a”的时间,然后捕获输入第二个键的时间。 如果它高于阈值,您希望第二个字母位于第一个,第一个字母位于第二个。 如果它低于您的阈值,您需要先输入第一个字母,然后再输入第二个字母。
It's possible. You're going to want to track when you your keypress events fire. Capture the time the "a" was entered, and then the time the second key was entered. If it's above a threshold, you want the second letter to be first, and the first letter to come second. If it's below your threshold, you want the first letter first, and the second letter second.