jQuery ajax 跨域请求
jQuery官方apigetJSON(http://api.jquery.com/jQuery.getJSON/)的说明中有这样一段
AdditionalNotes:Duetobrowsersecurityrestrictions,most"Ajax"requestsaresubjecttothesameoriginpolicy;therequestcannotsuccessfullyretrievedatafromadifferentdomain,subdomain,orprotocol.
ScriptandJSONPrequestsarenotsubjecttothesameoriginpolicyrestrictions.
所以一般的ajax跨域请求返回不了什么东东的。只有script和jsonp两种可以返回。
举例:
对于jsonp,有url?jsonCallBack=?
在后台,如jsp中如最后这样写Stringjson="{\"name\":\"LP\"}";out.print("jsonCallBack("+json+")");
声明:本站所有文章资源内容,如无特殊说明或标注,均为采集网络资源。如若本站内容侵犯了原著者的合法权益,可联系本站删除。