87,990
社区成员
发帖
与我相关
我的任务
分享
jQuery.ajax({
type: "post",
async: false,
url: "ShowPicDetail.aspx/GetPostsList",
data: '{manshowId:\"' + msid + '\", pageId:\"' + currentPageIdx + '\", pageSize:\"' + pageSize + '\"}',
contentType: "application/json; charset=utf-8",
dataType: "json",
cache: false,
success: function (data) {
//返回的数据用data.d获取内容
var jsonStr = window["eval"]("(" + data.d + ")");
}
},
error: function (err) {
alert(err);
}
});

