我有这样的事情:
<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选择器。
!$(this)
使用更简单的代码。