jQuery - 如果前一个元素没有特定的类,则删除该元素

发布于 2024-11-03 16:16:58 字数 468 浏览 0 评论 0原文

我写了这段代码,但它不起作用。

目标:

  1. 如果“.well-well”之前的跨度不是“.dont-remove”,则删除该跨度

  2. 但是,如果“.well-well”之前的跨度是“.dont-remove”,则不执行任何操作

“示例”在这里:

http://jsfiddle.net/sAebR/

if( $(".well-well").prev('span').not('.dont-remove') ){ $(".well-well").prev('span').remove(); }

我通过这段代码得到的是它删除“.well-well”之前的所有跨度,我不知道为什么。

我做错了什么?

I wrote this code, but it doesnt work.

goal:

  1. If span that is previous to ".well-well" is NOT ".dont-remove" then remove that span

  2. However if span that is previous to ".well-well" IS ".dont-remove" then do nothing

"example" here:

http://jsfiddle.net/sAebR/

if( $(".well-well").prev('span').not('.dont-remove') ){ $(".well-well").prev('span').remove(); }

What im getting with this code is that it removes all spans that are previous to ".well-well" and i have no idea why.

What am i doing wrong?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

够运 2024-11-10 16:16:58

你不需要 if:

$(".well-well").prev('span').not('.dont-remove').remove()

你的代码所说的是:

if ($(".well-well").prev('span').not('.dont-remove') != null) 
{
 //remove them all
}

不要担心 if。 remove() 函数会处理这个问题。

http://jsfiddle.net/sAebR/2/

you don't need the if:

$(".well-well").prev('span').not('.dont-remove').remove()

what your code is say is:

if ($(".well-well").prev('span').not('.dont-remove') != null) 
{
 //remove them all
}

don't worry about the if. The remove() function will look after that.

http://jsfiddle.net/sAebR/2/

遥远的绿洲 2024-11-10 16:16:58

这是因为你删除元素的方式。如果您找到符合您的条件的元素,则可以删除每个元素(没有特定的条件)。

在空集合上使用 remove 是完全合法的,因此您不必担心是否有元素。试试这个:

$(".well-well").prev('span').not('.dont-remove').remove();

It's because of how you remove elements. If you find elements that match your criteria, you remove every element (with no specific criteria).

It's perfectly legal to use remove on empty collections, so you shouldn't worry about if there are elements or not. Try this instead:

$(".well-well").prev('span').not('.dont-remove').remove();
梦年海沫深 2024-11-10 16:16:58

在您的情况下,not 语句始终评估 true,因为它返回一个 jQuery 对象,因此您要删除所有跨度。

jQuery 适用于集合并且是可链接的。您可以简单地将它们全部组合到此中:

$(".well-well").prev('span').not('.dont-remove').remove();

在操作中查看它 - http://jsfiddle.net/WFTbF/1 /

In your case the not statement is always evaluating true because it returns a jQuery object and therefore you are removing all spans.

jQuery works on collections and is chainable. You can simply combine them all into this:

$(".well-well").prev('span').not('.dont-remove').remove();

Check it out in action - http://jsfiddle.net/WFTbF/1/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文