wrapAll(html )
优质
小牛编辑
138浏览
2023-12-01
描述 (Description)
wrapAll( html )方法将匹配集中的所有元素包装到单个包装器元素中。
以下是使用此方法的简单语法 -
<i>selector</i>.wrapAll( html )
参数 (Parameters)
以下是此方法使用的所有参数的说明 -
html - 将动态创建并围绕每个目标的HTML字符串。
例子 (Example)
以下是一个简单的示例,简单地显示了此方法的用法。 这用新方块包裹所有方块 -
<html>
<head>
<title>The jQuery Example</title>
<script type = "text/javascript"
src = "https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js">
</script>
<script type = "text/javascript" language = "javascript">
$(document).ready(function() {
$("div").click(function () {
var content = "<div class = 'div'></div>";
$("div").wrapAll( content );
});
});
</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>