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 ??? ???? ?? $() ??? ??? ??? ? ?? ?? ????? ??? ???? ? ????. ? ??? ?? ?? ??? ??? ? ??? ?? ??? ???? ???. ???? ? ??? ? ??? ?????. ? ???? ??? ?? ???? ??? ? ??? ?? ?? ??? ?????.