219

我有这样的事情:

<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 选择器。

4

4 回答 4

420

尝试使用not() 方法而不是:not()选择器

$(".content a").click(function() {
    $(".content a").not(this).hide("slow");
});
于 2009-01-13T04:39:46.153 回答
43

您可以使用not函数而不是:not选择器:

$(".content a").not(this).hide("slow")
于 2009-01-13T04:39:55.137 回答
10

您还可以使用 jQuery.siblings()方法:

HTML

<div class="content">
  <a href="#">A</a>
  <a href="#">B</a>
  <a href="#">C</a>
</div>

Javascript

$(".content").on('click', 'a', function(e) {
  e.preventDefault();
  $(this).siblings().hide('slow');
});

工作演示:http: //jsfiddle.net/wTm5f/

于 2014-02-15T22:09:35.730 回答
5

您应该使用“siblings()”方法,并防止为了应用该效果而一遍又一遍地运行“.content a”选择器:

HTML

<div class="content">
    <a href="#">A</a>
</div>
<div class="content">
    <a href="#">B</a>
</div>
<div class="content">
    <a href="#">C</a>
</div>

CSS

.content {
    background-color:red;
    margin:10px;
}
.content.other {
    background-color:yellow;
}

Javascript

$(".content a").click(function() {
  var current = $(this).parent();
  current.removeClass('other')
    .siblings()
    .addClass('other');
});

见这里:http: //jsfiddle.net/3bzLV/1/

于 2014-02-16T13:27:34.130 回答