طريقة jQuery html ()

❮ أساليب jQuery HTML / CSS

مثال

قم بتغيير محتوى جميع عناصر <p>:

$("button").click(function(){
  $("p").html("Hello <b>world</b>!");
});

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

تقوم طريقة html () بتعيين أو إرجاع محتوى (داخلي HTML) للعناصر المحددة.

عند استخدام هذه الطريقة لإرجاع المحتوى ، فإنها تُرجع محتوى العنصر الأول المطابق.

عند استخدام هذه الطريقة لتعيين المحتوى ، فإنها تقوم بالكتابة فوق محتوى جميع العناصر المتطابقة.

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


بناء الجملة

إعادة المحتوى:

$(selector).html()

تعيين المحتوى:

$(selector).html(content)

اضبط المحتوى باستخدام وظيفة:

$(selector).html(function(index,currentcontent))

Parameter Description
content Required. Specifies the new content for the selected elements (can contain HTML tags)
function(index,currentcontent) Optional. Specifies a function that returns the new content for the selected elements
  • index - Returns the index position of the element in the set
  • currentcontent - Returns the current HTML content of the selected element

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


كيفية إرجاع محتوى عنصر.


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


❮ أساليب jQuery HTML / CSS