📜  jQuery append()

📅  最后修改于: 2020-11-25 04:36:01             🧑  作者: Mango

jQuery append()

jQuery append()方法用于将指定的内容作为jQuery集合中所选元素的最后一个子元素(位于其末尾)插入。

append()和appendTo()方法用于执行相同的任务。它们之间的唯一区别在于语法。

句法:

$(selector).append(content, function(index, html))

jQuery append()方法的参数

Parameter Description
Content It is a mandatory parameter. It specifies the content which you want to insert. Its possible values are:
  • HTML elements
  • jQuery objects
  • DOM elements
Function (index,html) It is an optional parameter. It specifies the function that returns the content to insert.
  • Index: It returns the index position of the element in the set.
  • HTML: It returns the current HTML of the selected element.

jQuery append()方法的示例

让我们以一个示例来演示jQuery append()方法。








This is a paragraph.

This is another paragraph.

  1. Item no.1
  2. Item no.2
  3. Item no.3