我尝试从另一台服务器加载静态html页面。我提出跨域请求。
$(document).ready(function (){
$("div[src]").each(function(){
var staticFileURL = $(this).attr('src');
$.ajax({
url: staticFileURL,
dataType: 'jsonp',
data: {},
error: function(xhr, status, error) {
alert(error);
},
success: function() {
alert("success");
},
jsonp: false,
jsonpCallback: 'jsonpCallback'
});
});
});
但我遇到了chrome错误"SyntaxError:意外的令牌<"。
在FF中"SyntaxError:无效的xml属性值"。怎么了。有人能帮我吗?
JSONP是从服务器获取json数据,看起来像是在尝试接收HTML数据。尝试将HTML数据放入服务器上的JSON对象中,然后在成功回调时读取该HTML:
例如,来自服务器的json数据:
{ html: "<html><head>...</head></html>" }
此外,您的成功回调应该如下所示:
success: function(**data**){
}