jQuery 删除或是清空某个HTML元素示例

jQuery使用下面两个方法来删除或是清空某个HTML元素。

remove() �C 删除指定的元素(包括其子元素)
empty() �C 清空指定元素的子元素

例如:

 
 
 
 
JQuery Demo 
 
 
 
 

This is some text in the div.

This is a paragraph in the div.

This is another paragraph in the div.


empty: JQuery Demo
This is some text in the div.

This is a paragraph in the div.

This is another paragraph in the div.


jQuery的remove()方法也支持一个参数,可以用于过滤一些需要删除的HTML元素。这个参数可以为任何有效的jQuery selector.
比如下面代码只删除class=”italic”的

元素:

$("p").remove(".italic");

你可能感兴趣的:(jQuery 删除或是清空某个HTML元素示例)