prepend()

jQuery prepend() 方法

实例

在所有 <p> 元素开头插入内容:

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


定义和用法

prepend() 方法在被选元素的开头插入指定内容。

提示:如需在被选元素的结尾插入内容,请使用 append() 方法。


语法

$(selector).prepend(content,function(index,html))

参数 描述
content 必需。规定要插入的内容(可包含 HTML 标签)。

可能的值:

  • HTML 元素
  • jQuery 对象
  • DOM 元素
function(index,html) 可选。规定返回待插入内容的函数。
  • index - 返回集合中元素的 index 位置。
  • html - 返回被选元素的当前 HTML。


© 2021 jiaocheng.bubufx.com  联系我们
ICP备案:鲁ICP备09046678号-3