Posted in Javascript onJanuary 10, 2015
本文实例讲述了jquery文档操作wrap()方法。分享给大家供大家参考。具体实现方法如下:
wrap()方法:是指用某个标签将某个元素包起来,即在外面多加一层标签。
<html> <head> <title>jquery文档操作:wrap()方法</title> <script type="text/javascript" src="jquery-1.8.2.min.js"></script> <script type="text/javascript"> $(function(){ $("button").click(function(){ $("p").wrap("<div></div>");//在p标签外,多加一个div层 $("div").css("color","blue"); }); }); </script> </head> <body> <p>hello world<br />i love you!<br />hhaha ,goodmorning</p> <button>wrap()方法</button> </body> </html>
希望本文所述对大家的jQuery程序设计有所帮助。
jquery文档操作wrap()方法实例简述
- Author -
shichen2014声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@