首頁 >web前端 >js教程 >jquery append()方法與html()方法的區別及使用介紹_jquery

jquery append()方法與html()方法的區別及使用介紹_jquery

WBOY
WBOY原創
2016-05-16 16:40:391298瀏覽

append(content):方法在被選元素的結尾(仍然在內部)插入指定內容,有很多朋友覺得append與html差不多,其它從英文意義上append是在原有基礎上增加,而html中是替換當前所有內容。

定義與用法

append() 方法在被選元素的結尾(仍在內部)插入指定內容。
$(selector).append(content)

使用函數來附加內容
使用函數在指定元素的結尾插入內容。

文法

$(selector).append(function(index,html))

實例碼:

<script src="/jquery.min.js" type="text/javascript"></script> 
<style> 
.imgFocus{border: 1px solid #eee;} 
</style> 
<p> </p> 
<script type="text/javascript"> 
var showimg = "<div class='imgFocus'>123456</div>"; 
$("p").append(showimg); 
</script>

html() 方法傳回或設定被選元素的內容 (inner HTML)。

如果方法未設定參數,則傳回被選元素的目前內容。
返回元素內容
當使用該方法傳回一個值時,它會傳回第一個符合元素的內容。

文法

$(selector).html()

設定所有 p 元素的內容:

$(".btn1").click(function(){ 
$("p").html("Hello <b>world</b>!"); 
});

指定元素中清空

$("a[href$='logout.asp']").click(function(event) { 
event.preventDefault(); 
$.get("/xxlr/Logout.asp","",function(data, textStatus) { 
if (data == 1) { //表明注销成功 
$('#message').html(""); 
$("#userlogin>div").show(); 
} 
else { 
$('#message').append("<p><strong>注销失败,请重新尝试!</strong></p>"); 
} 
}); 
});

以下是網友的補充:

當然不一樣了,append是追加,html是完全替換

123


$("#1").html("456");
結果是:

456



$("#1").append("");
結果是:

123

456
陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn