html代碼:
代碼如下:
<table id="repTable"……>
……
<span id="<%# Eval("Id") %>" class="address"></span>
</table>
jquery代碼:
代碼如下:
$(document).ready(function(){
$("#repTable span.address").each(function(){
var spanTemp = $(this);
$.ajax({
type: "get",
url: "SceneryAjaxCall.aspx",
data: "sid="+$(this).attr("id"),
cache: true,
dataType: "html",
success: function(msg){
spanTemp.append(msg);
}
});
});
});
其中在寫jquery代碼時,我遇到了下面幾個問題:
(1)開始沒寫第三行,而是在第十一行直接調用的$(this),報錯“不能給回調函數賦值”。原因是回調後對象已經發生改變,所以需要事先保存;
(2)沒寫dataType,發現不能返回msg,不知道為什麼;