当前位置:  开发笔记 > 编程语言 > 正文

如何从jQuery选择器中排除$(this)?

如何解决《如何从jQuery选择器中排除$(this)?》经验,为你挑选了4个好方法。

我有这样的事情:

A
B
C

单击其中一个链接时,我想在未单击的链接上执行.hide()函数.我理解jQuery有:not selector,但在这种情况下我无法弄清楚如何使用它因为我必须使用它来选择链接$(".content a")

我想做点什么

$(".content a").click(function()
{
    $(".content a:not(this)").hide("slow");
});

但在这种情况下,我无法弄清楚如何正确使用:not selector.



1> Dan Herbert..:

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

$(".content a").click(function() {
    $(".content a").not(this).hide("slow");
});


@marck没有上下文,我不知道.创建一个新问题,我也许可以提供帮助.
这是一个非常糟糕的解决方案(性能方面).没有真正的理由在'click`回调中`$(".content a")`在每次点击...

2> Zach Langley..:

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

$(".content a").not(this).hide("slow")



3> Edgar Ortega..:

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

HTML

A B C

使用Javascript

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

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



4> Ronen Cypis..:

您应该使用"siblings()"方法,并防止反复运行".content a"选择器以应用该效果:

HTML

A
B
C

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/

推荐阅读
惬听风吟jyy_802
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有