📅  最后修改于: 2020-11-25 11:36:46             🧑  作者: Mango
jQuery after()和jQuery insertAfter()这两个方法用于执行相同的任务,即在选定元素之后插入其他内容。
after()和insertAfter之间的主要区别在于内容和目标的语法以及位置。
在after()方法中,target是选定的元素,内容作为该方法的参数放置。
$(target).after(contentToBeInserted)
在insertAfter()方法中,content是所选元素,而target则作为该方法的参数放置。
$(contentToBeInserted).insertAfter(target)
注意:如果要在所选元素之前插入HTML元素,则应使用insertBefore()方法。
句法:
$(content).insertAfter(selector)
Parameter | Description |
---|---|
Content | It is a mandatory parameter. It specifies the content which you want to insert. |
Selector | It is also a mandatory parameter. It specifies the place where you insert the content.> |
让我们看一下jQuery insertAfter()方法的示例。
This is a tutorial website.
This is a training institute.
输出:
This is a tutorial website.
This is a training institute.