如何在 jQuery 中用另一個元素包裹現有元素?


若要在 jQuery 中用另一個元素包裹現有元素,請使用 wrapAll() 方法。wrapAll() 方法將匹配集中所有元素包裹到一個單獨的包裝器元素中。

示例

你可以嘗試執行以下程式碼,瞭解如何在 jQuery 中用另一個元素包裹現有元素

線上演示

<!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: green;
  }
</style>
</head>
<body>

<div id="demo">
  <h2>Heading 2</h2>
  <p>This is demo text.</p>
  <p>Test</p>
 
</div>
<div id="demo2">
  <h2>Heading 2</h2>
  <p>This is demo text.</p>
  <p>Test</p>
</div>

<button id="button3">Wrap all</button>

</body>
</html>

更新時間:2019 年 12 月 10 日

2K+ 次瀏覽

開啟你的 職業生涯

完成課程以獲得認證

開始學習
廣告
© . All rights reserved.