通过 document.getElementById(...).value 设置值后的 jQuery 更改事件

发布于 2024-12-04 07:30:48 字数 308 浏览 1 评论 0原文

我正在尝试处理更改事件,但似乎不起作用。我想在通过 document.getElementById('id_of_input').value 设置值后使用 jQuery 处理该事件。这是代码: http://jsbin.com/axagej (编辑请参阅:http://jsbin.com/axagej/edit) - 我想查看警报。

I'm trying to handle change event, but it seems it doesn't work. I would like to handle the event using jQuery after setting value via document.getElementById('id_of_input').value. Here is the code: http://jsbin.com/axagej (to edit see: http://jsbin.com/axagej/edit) - I would like to see an alert.

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

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

发布评论

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

评论(3

酒废 2024-12-11 07:30:48

更改事件对我来说效果很好。这只是当你失去焦点时的表现。如果您在写作时更喜欢提醒,您应该对 jQuery 键盘事件感兴趣 (http:// /api.jquery.com/category/events/keyboard-events/)。

@tchaOo

The change event is working fine for me. It's just acting when you lost focus. If you prefer alert while writing, you should be interested by the jQuery keyboard events (http://api.jquery.com/category/events/keyboard-events/).

@tchaOo

毅然前行 2024-12-11 07:30:48

如果您以编程方式设置值,则需要使用 change触发

$("#sample").change();

$("#sample").trigger("change");

If you're setting the value programatically you need to fire the event yourself using change or trigger:

$("#sample").change();

or

$("#sample").trigger("change");
飘然心甜 2024-12-11 07:30:48

当您以编程方式更改字段的值时,您不会收到更改事件。您需要显式调用更改处理程序。查看更新后的 jsbin:http://jsbin.com/axagej/2/edit

When you're programmatically changing the value of a field, you won't get a change event. You'll need to explicitly invoke the change handler. See the updated jsbin: http://jsbin.com/axagej/2/edit

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