jQuery append () الطريقة

❮ أساليب jQuery HTML / CSS

مثال

أدخل محتوى في نهاية كل عناصر <p>:

$("button").click(function(){
  $("p").append("<b>Appended text</b>");
});

التعريف والاستخدام

تقوم طريقة append () بإدراج محتوى محدد في نهاية العناصر المحددة.

تلميح: لإدراج محتوى في بداية العناصر المحددة ، استخدم طريقة prepend () .


بناء الجملة

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

Parameter Description
content Required. Specifies the content to insert (can contain HTML tags)

Possible values:

  • HTML elements
  • jQuery objects
  • DOM elements
function(index,html) Optional. Specifies a function that returns the content to insert
  • index - Returns the index position of the element in the set
  • html - Returns the current HTML of the selected element

جربها بنفسك - أمثلة


أدخل المحتوى باستخدام طريقة append ().


باستخدام وظيفة لإدراج محتوى في نهاية العناصر المحددة.


❮ أساليب jQuery HTML / CSS