0

我有一些元素如下:

<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。
有什么建议吗?

4

2 回答 2

6

使用前置..

$('#shareswrapper').prepend('<div id="1751">Some new content here!!!!</div>');
于 2012-06-25T15:23:43.353 回答
0

两者都在正确的轨道上。将它们链接在一起

$('#shareswrapper:first-child').before("injection content")
于 2012-06-25T15:27:58.793 回答