0

我需要能够删除和替换以下代码中 </div> 之后的 4 个 <br> 标签。我可以控制的页面部分从标签开始,而不是上面的代码。提前致谢。

<pre>
<div class="pageTitle">
<h1>Unit 2: Week X - Discussion Example</h1>
</div>
<br>
<br>
<br>
<br>
<style type="text/css">
... 

4

2 回答 2

1
  • 如果你在div水平。

$("div.pagetitle").siblings("<br/>,<br>").remove()

  • 如果你在h1水平。

$("h1").parent().siblings("<br/>,<br>").remove()

参考 :

于 2013-06-10T14:56:37.243 回答
0

Why not use nextAll selector like this:

$('div.pageTitle').nextAll('br');

or you can use simple next selector:

$('div.pageTitle').next('br')

and then loop over this 4.

于 2013-06-10T14:50:48.480 回答