防止click事件影响父jquery

发布于 2024-12-09 02:06:27 字数 218 浏览 0 评论 0原文

我要停止从子级到父级的事件传播,我有一堆包含 ali 标签。

$('li a[rel=close]').live('click', function(e){
    e.stopPropagation();
    e.preventDefault();
})

但这并不能阻止活动。有什么建议吗?

I was to stop the event propagation from the child to the parent, i have a bunch of li tags containing a.

$('li a[rel=close]').live('click', function(e){
    e.stopPropagation();
    e.preventDefault();
})

But it doesn;t stop the event.Any suggestions ?

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

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

发布评论

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

评论(3

渔村楼浪 2024-12-16 02:06:27

stopPropagationlive 方面存在问题,来自 jQuery stopPropagation 文档 -

由于 .live() 方法在事件传播到
在文档的顶部,不可能停止传播
现场活动

正如 Rob W 所说,您的代码可以与 bind 一起正常工作,这里有一个演示 - http: //jsfiddle.net/TmKyT/

stopPropagation has problems with live, from the jQuery stopPropagation docs -

Since the .live() method handles events once they have propagated to
the top of the document, it is not possible to stop propagation of
live events

As Rob W has said your code would work fine with bind, here's a demo - http://jsfiddle.net/TmKyT/

回忆躺在深渊里 2024-12-16 02:06:27

使用 .bind 而不是 .livelive 事件在传播树的末尾触发。仅当您还想为稍后创建的元素绑定事件侦听器时,live 才比 bind 更有用。

Use .bind instead of .live. The live event is triggered at the end of the propagation tree. live is only more useful than bind when you want to also bind the event listener for elements which are created later.

鲜肉鲜肉永远不皱 2024-12-16 02:06:27

也许尝试使用委托?

$('ul.parent').delegate('li a[rel=close]', 'click', function( event ) {

}

Maybe try using delegate?

$('ul.parent').delegate('li a[rel=close]', 'click', function( event ) {

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