使用jquery,如果我需要捕获下拉更改事件,我需要livequery插件吗?
我想在更改下拉列表的选择时运行一些代码。我看到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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
live
利用了event
冒泡机制,因此我们可以将事件处理程序附加到动态创建的元素上,它将按预期工作,因为它将事件附加到文档元素并侦听给他们。但我相信change
事件不会冒泡到 dom 树,因此它可能不起作用。live
takes advantage ofevent
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 believechange
event is not bubbled upto the dom tree so it may not work.从此页面,看起来您需要 livequery 才能在 IE 中工作
from this page, it looks like you need livequery for it to work in IE
不。您应该能够仅使用标准 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.