顯示具有 Ajax 標籤的文章。 顯示所有文章
顯示具有 Ajax 標籤的文章。 顯示所有文章

2013年6月5日 星期三

JQuery 更換或附加內容

附加內容
$('#target').append(newcontent);

附加內容前清除原有內容
$("#target").empty().append(newcontent);

更換內容
$('#target').html(newcontent);