jQuery UI 自动完成:如何获取“更改”事件要提前触发吗?

发布于 11-16 13:51 字数 352 浏览 3 评论 0原文

http://jqueryui.com/demos/autocomplete/#event-change

听起来就像 change 事件应该在您选择一个项目后触发,但它似乎会触发 onblur,但前提是输入已更改。

select OTOH 触发得太早,它在输入文本更新之前触发。

我想在用户选择一个项目后或在用户键入某些内容并切换焦点后(如通常的更改事件)立即对输入执行某些操作。

我怎样才能做到这一点?

http://jqueryui.com/demos/autocomplete/#event-change

It sounds like the change event is supposed to fire after you've selected an item, but instead it seems to fire onblur, but only if the input has changed.

select OTOH fires too early, it fires before the input text gets updated.

I want to do something with the input as soon as the user picks an item OR after the user types something and switches focus (like the usual change event).

How can I do that?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

你爱我像她2024-11-23 13:51:53

没关系,想通了。我们可以作弊:

select: function(event,ui) { 
    this.value=ui.item.value; 
    $(this).trigger('change'); 
    return false; 
}

手动设置输入的值,然后手动触发更改事件,并返回 false,这样就不必设置两次输入了。

Nevermind, figured it out. We can cheat:

select: function(event,ui) { 
    this.value=ui.item.value; 
    $(this).trigger('change'); 
    return false; 
}

Set the value of the input manually, then trigger the change event manually, and return false so that it doesn't bother setting the input twice.

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