使用JQuery选择所有降序节点
我想要单击带有 .myClass 及其所有后代的跨度标记来执行某些操作。.
$('.myClass'). *<all elements below .myClass>*.click(function(){
//do something
});
如何选择 .myClass 选择器下面的所有元素?不仅是子节点,还有它们下面的每个节点。
我用的是IE7
I want a click on a span tag with .myClass ,and all its descendants, to do something..
$('.myClass'). *<all elements below .myClass>*.click(function(){
//do something
});
How do i select all elements below the .myClass selector ? Not only children, but every node below them aswell.
Im in IE7
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
默认情况下,点击将冒泡到家长,所以你只需要:
如果你真的确实需要所有元素,请使用
$('.myClass *')
,但通常您希望远离此,事件冒泡效率更高,并且默认情况下会发生。如果您需要目标,请使用event.target
查看它来自哪个实际子级,如下所示:A click by default will bubble up to the parents, so you just need:
If you really do need all elements, use
$('.myClass *')
, but typically you want to stay away from this, event bubbling is much more efficient and happens by default. If you need the target, seeing which actual child it came from useevent.target
, like this:如果你想明确地执行此操作:
$('.myClass').find('*').click(blah blah..);
文档:http://api.jquery.com/find/
If you want to do this explicitly:
$('.myClass').find('*').click(blah blah..);
Documentation: http://api.jquery.com/find/