jQuery 文档操作 - wrapAll() 方法 概述
jQuery 2022-06-01 15:27:48小码哥的IT人生shichen
jQuery 文档操作 - wrapAll() 方法
实例
在 <div> 中包裹所有段落:
$(".btn1").click(function(){
$("p").wrapAll("<div></div>");
});
完整实例:
<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").wrapAll("<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>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
定义和用法
wrapAll() 在指定的 HTML 内容或元素中放置所有被选的元素。
语法
$(selector).wrapAll(wrapper)
参数 | 描述 |
---|---|
wrapper |
必需。规定包裹被选元素的内容。 可能的值: 已存在的元素不会被移动,只会被复制,并包裹被选元素。
|
亲自试一试 - 实例
完整实例【使用新元素来包裹】:
<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").wrapAll(document.createElement("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>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
创建一个新的 DOM 元素来包裹每个被选元素。