如何在 jQuery case 语句中循环?
我正在尝试执行类似
case KEY.ATSIGN:
while(!KEY.SPACE) {
clearTimeout(timeout);
timeout = setTimeout(onChange, options.delayLong);
}
break;
ATSIGN = 50 的操作,这是 @.. 的 ascii 代码。这会调用自动完成下拉列表。
SPACE = 32 这是空格字符的ascii。
我需要它下拉自动完成并允许子集搜索或 matchContains 搜索直到输入空格字符。这可能吗?
I am trying to do something like this
case KEY.ATSIGN:
while(!KEY.SPACE) {
clearTimeout(timeout);
timeout = setTimeout(onChange, options.delayLong);
}
break;
ATSIGN = 50 which is the ascii code for the @.. This invokes the autocomplete dropdown.
SPACE = 32 which is the ascii for the space character.
I need it to dropdown the autocomplete AND allow subset searching or matchContains searching up until a space character is entered. Is this possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你的代码是这样的吗?
如果是,那就错了。当按下按键时,就像 while(true) 一样。
试试这个
我不太明白。但试试这个。
is your code like this?
if it is, then its wrong. when ever keypressed happen its like while(true).
try this
i'm not quite understand. but try this.
试试这个
使用 jQuery、Ajax 和 PHP 实现类似于 Facebook 的自动建议。< /a>
Try this
Facebook like Autosuggestion with jQuery, Ajax and PHP.