2013年6月5日 星期三

JQuery 更換或附加內容

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

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

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

沒有留言:

張貼留言