0
我嘗試從另一個服務器加載靜態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屬性值」中。 怎麼了,有人幫我嗎?
通常是「意外的標記<」就像是網頁錯誤HTML的開頭部分,有的像'<'html>