首頁  >  文章  >  jquery動畫如何去除元素內容

jquery動畫如何去除元素內容

尊渡假赌尊渡假赌尊渡假赌
尊渡假赌尊渡假赌尊渡假赌原創
2023-05-29 09:25:171090瀏覽

jquery動畫去除元素內容的方法:1、利用「children()」方法傳回所有選取元素的子元素,再透過「remove()」方法刪除被選取元素和子元素,語法為「 $(元素).children().remove();”;2、利用「empty()」方法刪除被選元素的子元素,語法為「$(子元素).empty();」。

jquery動畫如何去除元素內容

本教學作業系統:Windows10系統、jQuery3.6.0版本、Dell G3電腦。

jquery動畫去除元素內容的兩種方法:

1、利用children() 方法傳回所有被選元素的直接子元素,再透過jQuery remove( ) 方法刪除被選取元素及其子元素。

其程式碼如下:

<!DOCTYPE html>
<html>
<head>
<script src="/jquery/jquery-1.11.1.min.js"></script><script>$(document).ready(function(){  $("button").click(function(){    $("#div1").children().remove();  });});
</script>
</head>
<body>
<div id="div1" style="height:120px;width:300px;border:1px solid black;background-color:yellow;">
<p>This is some text in the div.</p>
<p>This is a paragraph in the div.</p>
<p>This is another paragraph in the div.</p>
</div>
<br>
<button>删除 div 元素</button
></body>
</html>

用瀏覽器開啟html文件,點擊刪除按鈕,清除div元素中的內容即可。

屏幕截图 2023-05-29 091949.png

2、jQuery empty() 方法刪除被選元素的子元素。

其程式碼如下:

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

用瀏覽器開啟html文件,點擊刪除按鈕,清除div元素中的內容即可。

屏幕截图 2023-05-29 092249.png

以上是jquery動畫如何去除元素內容的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn