jQuery遍历到上面的div
在 JQuery 遍历方面遇到一些问题并寻求一些帮助..
如果我有以下 html
<div id="1">
This is a div
</div>
<div id="2">
<a href="link">This is div 2</a>
</div>
我想做的是,当我单击 div 2 中的链接时,是使用 dom 遍历向 div1 添加一个类,而不是只是直接引用 div 1s id...
非常感谢
Having a few issues with JQuery traversal and looking for some asssistance..
If i have the following html
<div id="1">
This is a div
</div>
<div id="2">
<a href="link">This is div 2</a>
</div>
What I would like to do, is when I click on the link in div 2, is add a class to div1 using dom traversal, and not just directly refering to div 1s id....
Many thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
http://api.jquery.com/prev/
这应该可以做到:
http://api.jquery.com/prev/
This should do it:
顺便说一句:id 必须以字母而不是数字开头
btw: ids have to start with a letter not a number
查看 .prev()
Check out .prev()