jQuery遍历到上面的div

发布于 2024-08-20 22:09:23 字数 294 浏览 8 评论 0原文

在 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 技术交流群。

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

发布评论

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

评论(3

我不会写诗 2024-08-27 22:09:23

http://api.jquery.com/prev/

这应该可以做到:

$('a').click(function() {
  $(this).parent().prev().addClass('previous');
});

http://api.jquery.com/prev/

This should do it:

$('a').click(function() {
  $(this).parent().prev().addClass('previous');
});
兔小萌 2024-08-27 22:09:23
$("#2 a").click(function(e) {
    e.preventDefault();
    $(this).parent().prev().addClass("myNewClass");
});

顺便说一句:id 必须以字母而不是数字开头

$("#2 a").click(function(e) {
    e.preventDefault();
    $(this).parent().prev().addClass("myNewClass");
});

btw: ids have to start with a letter not a number

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