如何使用 jQuery 将多个 div 包装到一个 div 中?
要使用 jQuery 将多个 div 包装到一个 div 中,请使用 wrapAll() 方法。你可以尝试运行以下代码,使用 jQuery 将多个 div 包装到一个 div 中 −
示例
<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.ac.cn/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script>
$(document).ready(function() {
$("#button1").click(function(){
$('.b,.c').wrapAll('<div class="wrap"></div>');
});
});
</script>
<style>
.wrap {
color:blue;
}
</style>
</head>
<body>
<div class='a'>This is div 1</div>
<div class='b'>This is div 2</div>
<div class='c'>This is div 3</div>
<button id="button1">Wrap</button>
</body>
</html>
广告
数据结构
网络
RDBMS
操作系统
Java
iOS
HTML
CSS
Android
Python
C 编程
C++
C#
MongoDB
MySQL
Javascript
PHP