如何使用 jQuery 將多個 div 包裝到一個 div 中?


要使用 jQuery 將多個 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() {
   $("#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>

更新於:2020 年 2 月 17 日

2K+ 瀏覽量

開啟您的職業生涯

結課後即可獲得認證書

開始學習
廣告