jQuery append () الطريقة
مثال
أدخل محتوى في نهاية كل عناصر <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:
|
function(index,html) | Optional. Specifies a function that returns the content to insert
|
جربها بنفسك - أمثلة
أدخل المحتوى باستخدام طريقة append ().
باستخدام وظيفة لإدراج محتوى في نهاية العناصر المحددة.