您现在的位置: 万盛学电脑网 >> 程序编程 >> 数据库 >> 数据库综合 >> 正文

jQuery 入门教程

作者:佚名    责任编辑:admin    更新时间:2022-06-22

这篇文章主要介绍了jQuery 入门教程的相关内容,下面我们就与大家一起分享。

jQuery 入门教程

删除HTML元素

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

remove() – 删除指定的元素(包括其子元素)

empty() – 清空指定元素的子元素

例如:

[html]

This is some text in the div.

This is a paragraph in the div.

This is another paragraph in the div

Remove div element

This is some text in the div.

This is a paragraph in the div.

This is another paragraph in the div.

Remove div element

jQuery 入门

empty() 示例:

[html]

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

This is some text in the div.

This is a paragraph in the div.

This is another paragraph in the div.

Remove div element

jQuery 入门

empty() 示例:

[html]

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

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 入门

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

 

[javascript]

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

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

以上就是我们为大家准备的jQuery 入门的相关内容,希望对大家可以有所帮助。