如何查找特殊标签或 ID 之前和之后的所有内容
我想删除 form
之前和之后的所有内容。我是 jquery 和英语的新手。
<h1>hello</h1>
<span>world</span>
<form id=f>
<input name=g>
<input type=submit>
</form>
<div>footer</div>
<p>more</p>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
我会选择:
即从 DOM 中取出您想要保留的位,然后用这些元素完全替换当前主体。即使您想要的元素嵌套在 DOM 树中很远的地方,这也将确保它能够正常工作。
请参阅http://jsfiddle.net/rwWp9/1/
I'd go for:
i.e. take the bits out of the DOM that you want to keep, and then completely replace the current body with those elements. This will ensure it works even if the elements you want are nested a long way down the DOM tree.
See http://jsfiddle.net/rwWp9/1/
您可以使用
.nextAll()
和.prevAll()
选择元素前后的所有内容。标记的 jsfiddle 示例。
You can use
.nextAll()
and.prevAll()
to select everything after and before an element.Example on jsfiddle of your markup.
查看 jQuery 函数 not()、prevUntil() 和 nextUntil()。还有next(),prev() 和 parentsUntil() 可能会有所帮助。
Check out jQuery functions not(), prevUntil() and nextUntil(). Also next(), prev(), and parentsUntil() might be helpful.
您必须使用 nextAll() 和 prevAll() 方法来删除所有同级。然而,只是为了给你一个替代的想法,看看这段代码。请注意,这不是解决方案。
You must use nextAll() and prevAll() methods to remove all the siblings. However, just to give you an alternative idea take a look at this code. Please note that it's not the solution.