📅  最后修改于: 2020-11-25 04:36:01             🧑  作者: Mango
jQuery append()方法用于将指定的内容作为jQuery集合中所选元素的最后一个子元素(位于其末尾)插入。
append()和appendTo()方法用于执行相同的任务。它们之间的唯一区别在于语法。
句法:
$(selector).append(content, function(index, html))
Parameter | Description |
---|---|
Content | It is a mandatory parameter. It specifies the content which you want to insert. Its possible values are:
|
Function (index,html) | It is an optional parameter. It specifies the function that returns the content to insert.
|
让我们以一个示例来演示jQuery append()方法。
This is a paragraph.
This is another paragraph.
- Item no.1
- Item no.2
- Item no.3