jQuery prependTo() Yöntemi
Örnek
Her <p> öğesinin başına bir <span> öğesi ekleyin:
$("button").click(function(){
$("<span>Hello World!</span>").prependTo("p");
});
Tanım ve Kullanım
prependTo() yöntemi, seçili öğelerin başına HTML öğeleri ekler.
İpucu: Seçili öğelerin sonuna HTML öğeleri eklemek için appendTo() yöntemini kullanın.
Sözdizimi
$(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 |
Kendiniz Deneyin - Örnekler
ekleme Seçili her öğenin başına varolan bir öğeyi eklemek için prependTo() yöntemi nasıl kullanılır.