這是我的代碼跨越跨域策略獲取JavaScript
function load() {
var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
document.getElementById("change").innerHTML =
this.responseText;
}
};
xhttp.open("GET", "https://www.example.com/xyz.txt", true);
xhttp.send();
}
爲xhttp.open
的網址就是一個例子URL與一個txt文件中的另一個領域。我可以在我的代碼中添加什麼以使其工作?謝謝。
你不能從客戶端。該來源必須允許您訪問,使用JSONP或使用代理。 –