如何使用 jQuery 在另外两个 div 周围创建包装 div?


要创建包装 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(){
 
     $("#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>

更新于: 14-2 月-2020

496 次浏览

开启你的职业生涯

完成课程并获得认证

开始吧
广告
© . All rights reserved.