我有一些元素如下:
<div id="shareswrapper">
<div id="41">
some content blah blah blah...
</div>
</div>
我需要添加让我们说下面的 div 到shareswrapper
:
<div id="1751">
Some new content here!!!!
</div>
输出如下:
<div id="shareswrapper">
<div id="1751">
Some new content here!!!!
</div>
<div id="41">
some content blah blah blah...
</div>
</div>
我使用了第一个孩子,但没有成功。.before()
方法对我不起作用,因为我不知道共享包装器中有哪些 div。
有什么建议吗?