如何在 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>

更新于: 10-12-2019

2 千多次浏览

开启你的职业生涯

完成课程获得认证

开始
广告