jQuery 多个parent() 调用
我有这个 jQuery:
$(this).parent().parent().find(".license_tooltip").stop(true, true).fadeIn(200);
$ (this)
对象嵌套在两个 div
中,如下所示:
<div> <div> <a href="">$(this) object</a> </div> <div> <a href="">object to fade in</a> </div> </div>
有人能给我指出正确的方向,使我的 jQuery 更加精简吗?上面给出的结构被复制多次,因此使用类和 ID 是不可能的。
I have this jQuery:
$(this).parent().parent().find(".license_tooltip").stop(true, true).fadeIn(200);
The $(this)
object is nested within two div
s like this:
<div> <div> <a href="">$(this) object</a> </div> <div> <a href="">object to fade in</a> </div> </div>
Can someone point me in the right direction to making my jQuery more streamlined? The structure presented above is replicated multiple times, so using classes and IDs is impossible.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用类(或任何其他可选属性)和
.closest()
声明您想要的父级,如下所示:对于脚本:
You can use a class (or any other selectable attribute) and
.closest()
to claim to the parent you want, like this:And for the script:
您可以使用
.parents( [选择器] )
这里是一个链接它将向上遍历不止一个父级。
You could use the
.parents( [ selector ] )
here is a linkIt will traverse more than one parent up.
使用父母()
use
parents()