$.ajax({
url:"list.php",
dataType: "json",
success: function(resp){
for(var i=0;i<resp.length;i++){
$('#goods_list').append(
"<h3>" + resp[i]["name"] + "</h3>"
+
"<div>Price: NT$" + resp[i]["price"] + "<br />"
+
resp[i]["description"]
+
"<hr /> <a href=# alt='"+ resp[i]["sn"]+ "' class='add_to_cart'>Add</a> | More"
+"</div>"
);
}
var resp2 = resp;
}
});
$('body').append(resp2[0]["price"]);
FireBug 说:
ReferenceError: resp2 is not defined
$('body').append(resp2[0]["price"]);
如何$.ajax
在其他地方使用成功数据?(在 $.ajax 函数之外)
这个概念类似于“全局变量”。