网页的结构是这样的:-
<div id='abc'>
<div class='a'>Some contents here </div>
<div class='b'>Some other contents< </div>
</div>
我的目标是在上述结构中的 a 类之后添加它。
<div class='a'>Some other contents here </div>
所以最终的结构看起来像这样:-
<div id='abc'>
<div class='a'>Some contents here </div>
<div class='a'>Some other contents here </div>
<div class='b'>Some other contents< </div>
</div>
有没有更好的方法可以使用 DOM 属性来做到这一点。我正在考虑解析内容和更新的幼稚方式。
如果我不清楚我的疑问,请发表评论!