<选择>标签重新发布

发布于 2024-07-30 06:20:21 字数 209 浏览 7 评论 0原文

使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

苍景流年 2024-08-06 06:20:21

这是可能的。 您需要跟踪按键事件何时触发。 捕获输入“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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文