.after()
在匹配的元素集合中的每个元素后面插入参数指定的内容,作为其兄弟节点。
.after(content[,content])
content HTML字符串 DOM 元素 元素数组 对象,用来插入到集合中每个匹配元素的后面。
content HTML字符串 DOM 元素 元素数组 对象,用来插入到集合中每个匹配元素的后面。
.after(function)
function 返回一个 HTML字符串 DOM 元素 元素数组 对象,用来插入到集合中每个匹配元素的后面。 this指向中当前位置。
结构:
Test
');Test
Test
.before()
根据参数设定,在匹配参数的前面插入插入内容。
.after(content[,content])
content HTML字符串 DOM 元素 元素数组 对象,用来插入到集合中每个匹配元素的后面。
content HTML字符串 DOM 元素 元素数组 对象,用来插入到集合中每个匹配元素的后面。
.after(function)
function 返回一个 HTML字符串 DOM 元素 元素数组 对象,用来插入到集合中每个匹配元素的后面。 this指向中当前位置。
结构:
Test
');Test
Test
.insertAfter()
在目标元素的后面插入集合中每个匹配的元素,插入的元素作为目标元素的兄弟元素。
.insertAfter(target)
target 一个选择器,元素,HTML字符串或者对象,匹配的元素将会被插入在由参数指定的目标后面。
结构:
Test
").insertAfter('.insertAfter');Test
Test
.insertBefore()
Insert each matching element in the set in front of the target element, and the inserted element is regarded as the sibling element of the target element.
.insertBefore(target)
target is a selector, element, HTML string or object. Matching elements will be inserted in front of the target specified by the parameter.
Structure:
Test
").insertBefore('.insertAfter');Test
The above is the content of jquery operating DOM elements (2). For more related articles, please pay attention to the PHP Chinese website (m.sbmmt.com)!