طريقة jQuery prependTo ()
مثال
أدخل عنصر <span> في بداية كل عنصر من عناصر <p>:
$("button").click(function(){
$("<span>Hello World!</span>").prependTo("p");
});
التعريف والاستخدام
تقوم طريقة prependTo () بإدراج عناصر HTML في بداية العناصر المحددة.
تلميح: لإدراج عناصر HTML في نهاية العناصر المحددة ، استخدم طريقة appendTo () .
بناء الجملة
$(content).prependTo(selector)
Parameter | Description |
---|---|
content | Required. Specifies the content to insert (must contain HTML tags). Note: If content is an existing element, it will be moved from its current position, and inserted at the beginning of the selected elements. |
selector | Required. Specifies on which elements to prepend the content to |
جربها بنفسك - أمثلة
كيفية استخدام طريقة prependTo () لإدراج عنصر موجود في بداية كل عنصر محدد.