📅  最后修改于: 2020-11-26 00:39:07             🧑  作者: Mango
jQuery before()方法用于将指定的内容插入所选元素之前。它将参数指定的内容添加到匹配元素集中的每个元素之前。
before()和insertBefore()这两个方法均用于执行相同的任务。它们之间的主要区别在于语法以及内容和目标的位置。
句法:
$(selector).before(content, function(index))
Parameter | Description |
---|---|
Content | It is a mandatory parameter. It specifies the content to insert. Its possible values are:
|
Function (index) | It specifies a function that returns the content which is used to insert.
|
让我们以一个示例来演示jQuery before()方法。
This is a tutorial website.
This is a training institute.
输出:
This is a tutorial website.
This is a training institute.