jQuery append() 方法
实例
在所有 <p> 元素的末尾插入内容:
<!DOCTYPE html>
<html>
<head>
<script src="https://libs.baidu.com/jquery/2.1.4/jquery.min.js"></script>
<script>
$(document).ready(function(){
$("#btn1").click(function(){
$("p").append(" <b>Appended text</b>.");
});
$("#btn2").click(function(){
$("ol").append("<li>Appended item</li>");
});
});
</script>
</head>
<body>
<p>This is a paragraph.</p>
<p>This is another paragraph.</p>
<ol>
<li>List item 1</li>
<li>List item 2</li>
<li>List item 3</li>
</ol>
<button id="btn1">Append text</button>
<button id="btn2">Append list item</button>
</body>
</html>
定义与用法
append()
方法在选定元素的末尾插入指定的内容。
提示:要在选定元素的开头插入内容,请使用 prepend() 方法。
语法
$(selector).append(content,function(index,html))
参数 | 描述 |
---|---|
content | 必填。指定要插入的内容(可以包含HTML 标记) 值可以为:
|
function(index,html) | 可选。指定返回要插入的内容的函数
|