DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> jQuery入門知識 >> JQuery特效代碼 >> jquery append()方法教程與html()方法教程的區別及使用介紹
jquery append()方法教程與html()方法教程的區別及使用介紹
編輯:JQuery特效代碼     

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>"); 
} 
}); 
});
XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved