如何使用 jQuery 在另外兩個 div 周圍建立包裝 div?
要建立包裝 div 在另外兩個 div 周圍, 請使用 wrapAll() 方法。你可以嘗試執行以下程式碼,使用 jQuery 建立包裝 div 在另外兩個 div 周圍 −
示例
<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
$("#button3").click(function(){
$('.demo, .demo2').wrapAll('<div class="demo3">');
});
});
</script>
<style>
div {
background-color: yellow;
}
</style>
</head>
<body>
<div class="demo">
<h2>Heading 2</h2>
<p>This is demo text.</p>
<p>Test</p>
</div>
<div class="demo2">
<h2>Heading 2</h2>
<p>This is demo text.</p>
<p>Test</p>
</div>
<button id="button3">Wrap all</button>
</body>
</html>
廣告
資料結構
網路
RDBMS
作業系統
Java
iOS
HTML
CSS
Android
Python
C 程式設計
C++
C#
MongoDB
MySQL
Javascript
PHP