jquery+ajax实现跨域请求的方法教程
本文实例讲述了jquery+ajax实现跨域请求的方法。分享给大家供大家参考。具体实现方法如下:
说明:这里的datatype 为 "jsonp" ;type 只能为 get
前台请求代码如下:
代码如下:
$.ajax({
type: "get",
url: "https://www.xxx.com/rest/validaccountsexists.x?accounts=admin",
datatype: "jsonp",
jsonp: "jsoncallback",
success: function (result) {
alert(result.success);
alert(result.content);
},
error: function (result, status) {
//处理错误
}
});
后台处理代码 validaccountsexists.aspx如下:
代码如下:
string accounts = gamerequest.getquerystring("accounts");
string jsoncallback = gamerequest.getquerystring("jsoncallback");
response.contentencoding =system.text.encoding.utf8;
response.contenttype = "application/json";
response.write(jsoncallback + "({\"success\":\"true\",\"content\":\"" + accounts + "\"})");
response.end();