jQuery 前置方法

示例

prepend() -将参数指定的内容插入到匹配元素集中每个元素的开头。

1。 prepend( content [, content ] )

// 用html字符串
jQuery('#parent').prepend('<span>child</span>');
// 或者您可以使用jQuery对象
jQuery('#parent').prepend($('#child'));
// 或者您可以使用逗号分隔的多个元素作为前缀
jQuery('#parent').prepend($('#child1'),$('#child2'));

2。 prepend(function)

从JQueryversion: 1.4  开始,您可以使用回调函数作为参数。您可以在其中获取参数作为元素在集合中的索引位置以及元素的旧HTML值。在函数内,this引用集合中的当前元素。

jQuery('#parent').prepend(function(i,oldHTML){      
     // 返回要添加的值
     return  '<span>child</span>';
});