如何在 jQuery 中使用 jQuery.wrapInner() 方法?
wrapInner() 方法使用 DOM 元素包装每个匹配元素的内部子内容(包括文本节点)。
以下是此方法使用所有参数的说明 −
- html − 将包装在目标周围的 DOM 元素。
示例
你可以尝试运行以下代码,了解如何在 jQuery 中使用 jQuery.wrapInner() 方法−
<html> <head> <title>jQuery wrapInner() method</title> <script src = "https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> <script> $(document).ready(function() { $("div").click(function () { $(this).wrapInner(document.createElement( "b" )); }); }); </script> <style> .div { margin:10px; padding:12px; border:2px solid #666; width:60px; } </style> </head> <body> <p>Click on any square below to see the result:</p> <div class = "div" id = "destination">THIS IS TEST</div> <div class = "div" style = "background-color:blue;">ONE</div> <div class = "div" style = "background-color:green;">TWO</div> <div class = "div" style = "background-color:red;">THREE</div> </body> </html>
广告