如何使用 jQuery 删除 <div> 中的所有内容?
要删除 div 元素内的所有内容,请使用remove()方法。您可以尝试运行以下代码来删除 <div> 元素中的所有内容 -
示例
<!DOCTYPE html><html>
<head>
<script xx_src="https://cdn.staticfile.org/jquery/3.2.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
$(".btn").click(function(){
$("div#demo").remove();
});
});
</script>
</head>
<body>
<button class="btn">Hide the elements inside div</button>
<div id="demo">
<p>Inside div- This is demo text.</p>
<p>Inside div- This is demo text.</p>
</div>
<span>
<p>Inside span- This is demo text.</p>
<p>Inside span- This is demo text.</p>
</span>
</body>
</html>
以上是 如何使用 jQuery 删除 <div> 中的所有内容? 的全部内容, 来源链接: utcz.com/z/311444.html