我使用此代码并且无法正常工作:
myURL = "http://localhost/index.html";
$.ajax({
type: 'GET',
url: myURL,
success: function(data) {
console.log(data);
},
async: false
});
或者
myURL = "http://127.0.1.1/index.html";
$.ajax({
type: 'GET',
url: myURL,
success: function(data) {
console.log(data);
},
async: false
});
当我在本地网页上时,它可以正常运行,但当我在跨域网站(例如google)中时,我无法在本地主机上找到我的文件。
有办法解决这个问题吗?谢谢。