jQuery html() Yöntemi

❮ jQuery HTML/CSS Yöntemleri

Örnek

Tüm <p> öğelerinin içeriğini değiştirin:

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

Tanım ve Kullanım

html() yöntemi, seçilen öğelerin içeriğini (innerHTML) ayarlar veya döndürür.

İçeriği döndürmek için bu yöntem kullanıldığında , FIRST eşleşen öğenin içeriğini döndürür.

İçeriği ayarlamak için bu yöntem kullanıldığında , eşleşen TÜM öğelerin içeriğinin üzerine yazar.

İpucu: Yalnızca seçili öğelerin metin içeriğini ayarlamak veya döndürmek için text() yöntemini kullanın.


Sözdizimi

İade içeriği:

$(selector).html()

İçeriği ayarla:

$(selector).html(content)

Bir işlev kullanarak içeriği ayarlayın:

$(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

Kendiniz Deneyin - Örnekler


nasıl döndürülür.


ayarlama Seçili tüm öğelerin içeriğini ayarlamak için bir işlev kullanma.


❮ jQuery HTML/CSS Yöntemleri