使用jquery,如果我需要捕获下拉更改事件,我需要livequery插件吗?

发布于 2024-12-01 23:25:13 字数 206 浏览 0 评论 0原文

我想在更改下拉列表的选择时运行一些代码。我看到livequery插件指出这是需要支持的,因为某些浏览器不这样做 ?

我是否真的需要 livequery 来捕获我动态创建的下拉列表的 onchange 事件,还是常规实时语法在所有浏览器中都有效

I want to have some code run when i change the selection of a dropdown. i see the livequery plugin states that this is needed to support as some browsers don't do it out of the box

Do I really need livequery to capture onchange event of a dropdown that i create dynamically or does the regular live syntax work in all browsers?

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

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

发布评论

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

评论(3

陌路终见情 2024-12-08 23:25:13

live 利用了 event 冒泡机制,因此我们可以将事件处理程序附加到动态创建的元素上,它将按预期工作,因为它将事件附加到文档元素并侦听给他们。但我相信 change 事件不会冒泡到 dom 树,因此它可能不起作用。

live takes advantage of event bubling mechanism so we can attach event handlers to elements which are created dynamically also, it will work as expected since it attaches event to the document element and listens to them. But I believe change event is not bubbled upto the dom tree so it may not work.

岁月如刀 2024-12-08 23:25:13

从此页面,看起来您需要 livequery 才能在 IE 中工作

from this page, it looks like you need livequery for it to work in IE

我爱人 2024-12-08 23:25:13

不。您应该能够仅使用标准 jquery api。

对于动态元素,使用 .live('change', 函数来捕获事件。

No. You should be able to use just the standard jquery api.

for the dynamic elemenets use .live('change', function to capture the event.

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