Need to remove all the code from the start tag to the next
我曾试图这样做。
$( #page1 ).remove();
但是,这只能消除双方之间的分歧。
我不知道第1页和2页标之间的其他内容,因为根据页上表格的类型,该代码是动态添加的。
<div id= page1 name= page1 >
...
</div>
<div id= another element />
<div id=yet another element />
...
<!-- Need to remove from page1 to here -->
<div id= page2 name= page2 >
...
</div>