Home  >  Article  >  Web Front-end  >  Usage examples of insertAfter() method in jQuery_jquery

Usage examples of insertAfter() method in jQuery_jquery

WBOY
WBOYOriginal
2016-05-16 16:21:351598browse

The example in this article describes the usage of insertAfter() method in jQuery. Share it with everyone for your reference. The specific analysis is as follows:

This method inserts the matching element after another specified element set.
The insertAfter() method has the opposite effect than the insertBefore() method.

Grammar structure:

Copy code The code is as follows:
$(selector).insertAfter(content)

Parameter list:

参数 描述
selector 定义要被插入的内容。
content 定义在哪些元素之后插入内容。

Example code:

Copy code The code is as follows:






insertAfter() function-Script Home





Content will be inserted in front of me

I am the p element





The above code can insert the div element below the p element, of course below the outside.

I hope this article will be helpful to everyone’s jQuery programming.

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn