wrap() 方法把每个被选元素放置在指定的 HTML 内容或元素中。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | <html> <head> <script type="text/javascript" src="/jquery/jquery.js"></script> <script type="text/javascript"> $(document).ready(function(){ $(".btn1").click(function(){ $("p").wrap("<div></div>"); }); }); </script> <style type="text/css"> div{background-color:yellow;} </style> </head> <body> <p>This is a paragraph.</p> <p>This is another paragraph.</p> <button class="btn1">用 div 包裹每个段落</button> </body> </html> |
上一篇:离开网页弹窗函数onbeforeunload与onunload
支付宝扫一扫打赏
微信扫一扫打赏
共 0 条评论关于"给字符串添加HTML标签 – wrap() 方法"
最新评论