我有这样的事情:
<div class="content">
<a href="#">A</a>
</div>
<div class="content">
<a href="#">B</a>
</div>
<div class="content">
<a href="#">C</a>
</div>
单击其中一个链接时,我想对未单击的链接执行 .hide() 函数。我知道 jQuery 有 :not 选择器,但我不知道在这种情况下如何使用它,因为我必须使用$(".content a")
我想做类似的事情
$(".content a").click(function()
{
$(".content a:not(this)").hide("slow");
});
但我不知道在这种情况下如何正确使用 :not 选择器。