JQuery元素控制方法汇总
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JQuery元素控制方法汇总相关的知识,希望对你有一定的参考价值。
1、在元素内部追加内容
$("元素名").append(content)
2、在元素中的不同位置追加内容
$("元素名").appendTo(content)
3、在元素的开始位置追加内容
$("元素名").prepend(content)
4、在不同元素的开始位置追加元素
$("元素名").prependTo(content)
5、在元素后追加兄弟元素
$("元素名").after(content)
6、在元素前追加兄弟元素
$("元素名").before(content)
7、用指定结构的元素包含元素
$("元素名").wrap(html)
8、用指定结构的元素包含多个元素的集合
$("元素名").wrapAll(html)
9、用指定标签包含子元素
$("元素名").wrapInner(html)
10、替换元素
$("元素名").replaceWith(content)
$("元素名").replaceAll(selector)
11、删除元素
$("元素名").empty()
$("元素名").remove([expr])
12、复制元素
$("元素名").clone()
$("元素名").clone(true)
以上是关于JQuery元素控制方法汇总的主要内容,如果未能解决你的问题,请参考以下文章
jquery 对象的 heightinnerHeightouterHeight 的区别以及DOM 元素的 clientHeightoffsetHeightscrollHeightoffset(代码片段