国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

jQuery DOM ?? Wrap()

??? ?? ??? ????? ??, ? ?? ??? ????? ?? JQuery? ??? ??? ?? ?? ???? ?????

.wrap(wrappingElement): ??? HTML ???? ???? ? ?? ??? ??? ?????.

?? ?? ?? ??? ????????

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <title></title>
    <script src="http://libs.baidu.com/jquery/1.9.1/jquery.js"></script>
</head>
<body>
    <p>php 中文網(wǎng)</p>


    <script>
        $("p").wrap("<div></div>");
    </script>
</body>
</html>

Friends, ? ??? ?? p ??? ?? ??? ?????. Friends, ???? ????? ??? ???? F12? ?? ???


Wrap( function ): ???? ??? ???? ? ???? HTML ??? ?? jQuery ??? ???? ?? ??

?? ? ??? ??? ?? ?? ??? ??? ? ??? ?? ???? ????? ?? ???? ?? ?????. ??? ????

?? ???????.

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <title></title>
    <script src="http://libs.baidu.com/jquery/1.9.1/jquery.js"></script>
</head>
<body>
    <p>php 中文網(wǎng)</p>

    <script>
        $('p').wrap(function(){
            return '<div>';
        })
    </script>
</body>
</html>

??? ? ??? ??? ? ????. ?? ??? ? ??? ????? ?? ??? ????

??: Wrap() ??? DOM ??? ???? ?? $() ??? ??? ??? ? ?? ?? ????? ??? ???? ? ????. ? ??? ?? ?? ??? ??? ? ??? ?? ??? ???? ???. ???? ? ??? ? ??? ?????. ? ???? ??? ?? ???? ??? ? ??? ?? ?? ??? ?????.

???? ??
||
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title></title> <script src="http://libs.baidu.com/jquery/1.9.1/jquery.js"></script> </head> <body> <p>php 中文網(wǎng)</p> <script> $("p").wrap("<div></div>"); </script> </body> </html>