gpt4 book ai didi

jquery - 如何在 jQuery 中将Class添加到链接悬停时的下一个td?

转载 作者:行者123 更新时间:2023-12-01 07:29:49 25 4
gpt4 key购买 nike

我有 6 个这样的 td:

<td><a href="#">link</a></td>
<td>Some text here</td>

<td><a href="#">link</a></td>
<td>Some other text here</td>

<td><a href="#">link</a></td>
<td>Some other other text here</td>

我想在将鼠标悬停在下一个 td 的链接上后添加Class。例如。如果我将鼠标悬停在第二个 td 的链接上,下一个 td 将具有一个类,例如 active 像这样

<td><a href="#">link</a></td>
<td>Some text here</td>

<td><a href="#">link</a></td> <!-- hoovering over this link -->
<td class="active">Some other text here</td> <!-- and this td will have class active-->

<td><a href="#">link</a></td>
<td>Some other other text here</td>

如何做到这一点?

最佳答案

$('a').hover(function(){
$(this).parent().next().addClass('someclass');
}, function(){
$(this).parent().next().removeClass('someclass');
});

关于jquery - 如何在 jQuery 中将Class添加到链接悬停时的下一个td?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7025183/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com