将jQuery从div替换为id

时间:2011-05-30 01:34:11

标签: jquery

有没有办法使用jQuery替换内容 - 比方说,

<html>
    <body>
        <div class="information1">
             This is the information.
        </div>
    </body>
</html>

<html>
    <body>
       <div id="information">              
            <div class="information1">
                 This is the information.
            </div>
        </div>
    </body>
</html>

2 个答案:

答案 0 :(得分:3)

$("div.information1").wrap("<div id='information'></div>");

有关此处wrap()功能的更多信息:http://api.jquery.com/wrap

答案 1 :(得分:0)

你可以尝试类似的东西:

$('#information').append('<div class="information>Text here</div>');