jQuery 文档操作 - wrapInner() 方法 概述
jQuery 2022-06-01 15:28:30小码哥的IT人生shichen
jQuery 文档操作 - wrapInner() 方法
实例
在每个 p 元素的内容上包围 b 元素:
$(".btn1").click(function(){
$("p").wrapInner("<b></b>");
});
完整实例:
<html>
<head>
<script type="text/javascript" src="https://apps.bdimg.com/libs/jquery/1.11.1/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$(".btn1").click(function(){
$("p").wrapInner("<b></b>");
});
});
</script>
</head>
<body>
<p>This is a paragraph.</p>
<p>This is another paragraph.</p>
<button class="btn1">加粗段落中的文本</button>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
定义和用法
wrapInner() 方法使用指定的 HTML 内容或元素,来包裹每个被选元素中的所有内容 (inner HTML)。
语法
$(selector).wrapInner(wrapper)
参数 | 描述 |
---|---|
wrapper |
必需。规定包围在被选元素的内容周围的内容。 可能的值: 已存在的元素不会被移动,只会被复制,并包裹被选元素。
|
使用函数包裹内容
使用函数来规定包围在每个被选元素周围的内容。
语法
$(selector).wrapInner(function())
完整实例:
<html>
<head>
<script type="text/javascript" src="https://apps.bdimg.com/libs/jquery/1.11.1/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("button").click(function(){
$("p").wrapInner(function(){
return "<b></b>"
});
});
});
</script>
<style type="text/css">
div{background-color:yellow;padding:10px;}
</style>
</head>
<body>
<p>这是一个段落。</p>
<p>这是另一个段落。</p>
<button>用 b 元素包围每个 p 元素</button>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
参数 | 描述 |
---|---|
function() | 必需。规定返回包围元素的函数。 |
亲自试一试 - 实例
完整实例【使用新元素来包裹】:
<html>
<head>
<script type="text/javascript" src="https://apps.bdimg.com/libs/jquery/1.11.1/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$(".btn1").click(function(){
$("p").wrapInner(document.createElement("b"));
});
});
</script>
</head>
<body>
<p>This is a paragraph.</p>
<p>This is another paragraph.</p>
<button class="btn1">加粗段落中的所有内容</button>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
创建一个新的 DOM 元素来包裹每个被选元素。