Ajax提交获取另一个网站页面内容 - Web 开发 / Ajax
如本地192.168.1.10上的一个js
$.ajax({
type: "POST",
url: "192.168.1.22/test/aa.php",
data: "name=John&location=Boston",
success: function(msg){
alert( "Data Saved: " + msg );
}
});
这里它不能访问192.168.1.22/test/aa.php吗
------解决方案--------------------是跨域请求,貌似不支持吧?
------解决方案--------------------
jsonp可以解决