方法:1、利用children()和remove()方法刪除指定元素的內容,語法為「$(元素).children().remove();」;2、利用empty()方法刪除指定元素的內容,語法為「$(元素).empty();」。
本教學操作環境:windows7系統、jquery1.10.0版本、Dell G3電腦。
jquery怎麼去除元素內容
在jquery中,可以為標籤內的部分內容標籤設定id屬性,透過該id取得部分內容對象。
如需刪除元素和內容,一般可使用以下兩個jQuery 方法:
#remove() - 刪除被選元素(及其子元素)
empty() - 從被選元素中刪除子元素
#下面我們透過範例來看這兩種方法的使用,範例如下:
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>
輸出結果:
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>
輸出結果:
相關影片教學推薦:jQuery影片教學
#以上是jquery怎樣去除元素內容的詳細內容。更多資訊請關注PHP中文網其他相關文章!