Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法在一行中完成这个脚本?
$(this).next("br").remove(); $(this).remove();
我试过$(this).remove().next("br").remove();了,但这不起作用,因为我们要在找到下一个元素之前删除该元素。
$(this).remove().next("br").remove();
您可以使用addBack()(或其前身andSelf()在 jQuery 1.8 之前):
$(this).next("br").addBack().remove();
或者,您可以使用end()返回上一组匹配的元素:
$(this).next("br").remove().end() .remove();
$(this).add( $(this).next("br") ).remove();