jQuery - 如果前一个元素没有特定的类,则删除该元素
我写了这段代码,但它不起作用。
目标:
如果“.well-well”之前的跨度不是“.dont-remove”,则删除该跨度
但是,如果“.well-well”之前的跨度是“.dont-remove”,则不执行任何操作
“示例”在这里:
if( $(".well-well").prev('span').not('.dont-remove') ){ $(".well-well").prev('span').remove(); }
我通过这段代码得到的是它删除“.well-well”之前的所有跨度,我不知道为什么。
我做错了什么?
I wrote this code, but it doesnt work.
goal:
If span that is previous to ".well-well" is NOT ".dont-remove" then remove that span
However if span that is previous to ".well-well" IS ".dont-remove" then do nothing
"example" here:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
你不需要 if:
你的代码所说的是:
不要担心 if。 remove() 函数会处理这个问题。
http://jsfiddle.net/sAebR/2/
you don't need the if:
what your code is say is:
don't worry about the if. The remove() function will look after that.
http://jsfiddle.net/sAebR/2/
这是因为你删除元素的方式。如果您找到符合您的条件的元素,则可以删除每个元素(没有特定的条件)。
在空集合上使用
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:在您的情况下,
not
语句始终评估true
,因为它返回一个 jQuery 对象,因此您要删除所有跨度。jQuery 适用于集合并且是可链接的。您可以简单地将它们全部组合到此中:
在操作中查看它 - http://jsfiddle.net/WFTbF/1 /
In your case the
not
statement is always evaluatingtrue
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:
Check it out in action - http://jsfiddle.net/WFTbF/1/