طريقة jQuery prepend ()

❮ أساليب jQuery HTML / CSS

مثال

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

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

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

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

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


بناء الجملة

$(selector).prepend(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

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


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


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


❮ أساليب jQuery HTML / CSS