前置方法
prepend()
- 將引數指定的內容插入匹配元素集中每個元素的開頭。
1. prepend( content [, content ] )
// with html string
jQuery('#parent').prepend('<span>child</span>');
// or you can use jQuery object
jQuery('#parent').prepend($('#child'));
// or you can use comma seperated multiple elements to prepend
jQuery('#parent').prepend($('#child1'),$('#child2'));
JQuery version: 1.4
以後你可以使用回撥函式作為引數。你可以在哪裡獲取引數作為集合中元素的索引位置以及元素的舊 HTML 值。在函式內,this
指的是集合中的當前元素。
jQuery('#parent').prepend(function(i,oldHTML){
// return the value to be prepend
return '<span>child</span>';
});