Menu
×
   ❮     
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY AWS CYBERSECURITY DATA SCIENCE
     ❯   

jQuery - 删除元素


使用 jQuery,删除现有的 HTML 元素非常容易。


删除元素/内容

要删除元素和内容,主要有两种 jQuery 方法

  • remove() - 删除选定的元素(及其子元素)
  • empty() - 删除选定元素的子元素

jQuery remove() 方法

jQuery 的 remove() 方法删除选定的元素及其子元素。

示例

$("#div1").remove();
亲自试一试 »

jQuery empty() 方法

jQuery 的 empty() 方法删除选定元素的子元素。

示例

$("#div1").empty();
亲自试一试 »


筛选要删除的元素

jQuery 的 remove() 方法也接受一个参数,允许你筛选要删除的元素。

该参数可以是任何 jQuery 选择器语法。

以下示例删除所有具有 class="test"<p> 元素:  

示例

$("p").remove(".test");
亲自试一试 »

此示例删除所有具有 class="test"class="demo"<p> 元素:  

示例

$("p").remove(".test, .demo");
亲自试一试 »

jQuery 练习

通过练习测试自己

练习

使用 jQuery 方法**删除**一个 <div> 元素。

$("div").();

开始练习


jQuery HTML 参考

要全面了解所有 jQuery HTML 方法,请访问我们的 jQuery HTML/CSS 参考


×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2024 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.