如何使用 jQuery 动态地用 div 包装和打开 HTML 控件?
若要包装 html 控件,请使用 wrap() 方法;若要打开 html 控件,请使用 unwrap() 方法。
示例
你可以尝试运行以下代码,以使用 jQuery 动态地用 div 包装和打开 html 控件。
<!DOCTYPE html> <html> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> <script> $(document).ready(function(){ $("#button1").click(function(){ $("p").wrap("<div></div>"); }); $("#button2").click(function(){ $("p").unwrap(); }); }); </script> <style> div { background-color: gray; } </style> </head> <body> <p>This is demo text.</p> <p>This is another text.</p> <button id="button1">Wrap</button> <button id="button2">Unwrap</button> </body> </html>
广告宣传