0

.firstA如果这些内容的内容和.secondA包含相同的文本,我想触发一个样式。我以为这段代码可以做到,唉,它没有用。我究竟做错了什么?

HTML:

<tr>
<td><a id="a11" href="#" class="firstA">text</a><a id="c10" href="#" class="secondA">text</a></td>
</tr>

JS:

$('.firstA').each(function(){
        if ($(this).text() == $(this).next('.secondA').text()){
            $(this).addClass('highlight');
        }
});

PS:.secondA 隐藏了一个$(.secondA).hide();函数,这可能是问题吗?

4

0 回答 0