如何使用 jQuery 动态地用一个 div 包装和解包 HTML 控件?


要包装 html 控件,请使用 wrap() 方法,使用 unwrap() 方法解包 html 控件。

示例

你可以尝试运行以下代码,使用 jQuery 动态地用一个 div 包装和解包 html 控件。

在线演示

<!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(){
       $("p").wrap("<div></div>");
    });
    $("#button2").click(function(){
       $("p").unwrap();
    });
});
</script>
<style>
  div {
     background-color: gray;
  }
</style>
</head>
<body>

<p>This is demo text.</p>
<p>This is another text.</p>

<button id="button1">Wrap</button>
<button id="button2">Unwrap</button>

</body>
</html>

更新于: 10-12-2019

481 次浏览

开启你的职业生涯

完成该课程即可获取认证

开始
广告