当前位置: 编程技术>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");
您可能感兴趣的文章:
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。