Jquery跨域Ajax取值

HTML:
$.ajax({
type: "get",
async: false,
url: "http://www.xxxxxx.com/otherLogin/checkLogin.aspx?isParam=1&rad=" + Math.random(),
dataType: "jsonp",
jsonp: "callbackparam",//服务端用于接收callback调用的function名的参数
jsonpCallback: "success_jsonpCallback",//callback的function名称
success: function (json) {
alert(json[].userName);
},
error: function (e) { }
});
接收页面:
Response.Write(Request.QueryString["callbackparam"] + "([{userId:0,userName:\"def\"}])");
上一篇:【转】 Vim多行缩进及高级命令


下一篇:Poco::JSON::Array 中object 设置preserveInsertionOrder 时,stringify出错-->深入解析