如何在 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>
广告