本文讲述在.net中实现跨域,关于跨域的基础问题或java的实现请参阅另一篇文章,
客户端:
$.ajax({
async: false,
crossDomain:true,51); font-family:Arial; font-size:14px; line-height:26px"> type: "GET",51); font-family:Arial; font-size:14px; line-height:26px"> url: "http://www.baidu.com?hello=123&dfasd=dfsfsd",//换成你自己的url和参数
dataType: "jsonp",51); font-family:Arial; font-size:14px; line-height:26px"> jsonp: "callback",//可以省略,默认英文诗callback,
jsonpCallback: "localHandler",//可以省略,默认jquery自动生成一个随机的名字
success: function(data) {
//处理逻辑
},51); font-family:Arial; font-size:14px; line-height:26px"> error: function(xmlHttpRequest,textStatus,errorThrown) {
alert(xmlHttpRequest.responseText + "--------" + textStatus + "-------" + errorThrown);
}
});
server端,mvc4apicontrol代码
[HttpGet]
public void ValidateUserAndCache()//params
{
//处理,,,输出必须使用下面的格式,否则客户端会一直报错,说回调函数(localhander)没有被调用,而且success也不会执行 HttpContext.Current.Response.Output.Write(callback + "(jsonobj)"); HttpContext.Current.Response.End(); }