jQuery prepend() Yöntem

❮ jQuery HTML/CSS Yöntemleri

Örnek

İçeriği tüm <p> öğelerinin başına ekleyin:

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

Tanım ve Kullanım

prepend() yöntemi, belirtilen içeriği seçilen öğelerin başına ekler.

İpucu: Seçili öğelerin sonuna içerik eklemek için append() yöntemini kullanın.


Sözdizimi

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

Kendiniz Deneyin - Örnekler


ile içerik oluşturun prepend() yöntemiyle içerik ekleyin.


kullanarak içeriğin başına ekleme Seçili öğelerin başına içerik eklemek için bir işlev kullanma.


❮ jQuery HTML/CSS Yöntemleri