当前位置: 编程技术>WEB前端
jQuery 删除或是清空某个HTML元素示例
来源: 互联网 发布时间:2014-08-25
本文导语: jQuery使用下面两个方法来删除或是清空某个HTML元素。 remove() – 删除指定的元素(包括其子元素) empty() – 清空指定元素的子元素 例如: JQuery Demo $(document).ready(function () { $("button").click(function () { $("#div1")....
jQuery使用下面两个方法来删除或是清空某个HTML元素。
remove() – 删除指定的元素(包括其子元素)
empty() – 清空指定元素的子元素
例如:
JQuery Demo $(document).ready(function () { $("button").click(function () { $("#div1").remove(); }); });This is some text in the div.This is a paragraph in the div.
This is another paragraph in the div.
Remove div element empty: JQuery Demo $(document).ready(function () { $("button").click(function () { $("#div1").empty(); }); });This is some text in the div.This is a paragraph in the div.
This is another paragraph in the div.
Empty the div element
jQuery的remove()方法也支持一个参数,可以用于过滤一些需要删除的HTML元素。这个参数可以为任何有效的jQuery selector.
比如下面代码只删除class=”italic”的
元素:
$("p").remove(".italic");