日期:2014-05-16 浏览次数:20775 次
function add() {
$.ajax(
{
type: "get",
url: "DB.ashx",
data: { },
datatype: "json",
success: function (data) {
alert(data); //这里我已经测试出来了 这个JSON的data是没有问题的
$.each(data, function (index, p) { //关键是怎么each循环读出来
var html = "<div>" + p.SI_shop_no + p.SI_shop_title + "</div>";
$("#div1").append(html);
});
},
error: function () {
alert("error");
}
});
}