当前位置: 移动技术网 > IT编程>开发语言>JavaScript > jQuery使用empty()方法删除元素及其所有子元素的方法教程

jQuery使用empty()方法删除元素及其所有子元素的方法教程

2019年05月17日  | 移动技术网IT编程  | 我要评论

本文实例讲述了jquery使用empty()方法删除元素及其所有子元素的方法。分享给大家供大家参考。具体实现方法如下:

<!doctype html>
<html>
<head>
<script src="js/jquery.min.js">
</script>
<script>
$(document).ready(function(){
 $("button").click(function(){
  $("#p1").empty();
 });
});
</script>
</head>
<body>
<p id="p1" style="height:100px;width:300px;border:1px solid black;background-color:yellow;">
this is some text in the p.
<p>this is a paragraph in the p.</p>
<p>this is another paragraph in the p.</p>
</p>
<br>
<button>empty the p element</button>
</body>
</html>

如对本文有疑问, 点击进行留言回复!!

相关文章:

验证码:
移动技术网