说我以下内容:

<div id = "thisOne">
<a href = "#" class="ui-state-highlight">abc</a>
<a href = "#'>def</a>
</div>


如果我执行$(“。thisOne a”),我将同时获得两个“ a”元素。我只想要突出显示的那个,我该怎么做?

最佳答案

这两行代码应该对您有帮助,请尝试一下:

$("#thisOne .highlight")


而另一个

$("#thisOne :not(.highlight)")

关于javascript - 选择标签和类(jQuery),我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/7530300/

10-08 22:31