前置方法
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>';
});