1

如何使用 javascript 读取位于我网站的相对路径中的文本文件?

这就是我一直在尝试做的事情,它说访问被拒绝:

this.load = function(path){
    if(root == null){
        root = path;
    }

    var client = new XMLHttpRequest();

    client.open('GET', "assets/myTextFile.txt");
    client.onreadystatechange = function() {
        alert(client.responseText);
    };

    client.send();

};
4

2 回答 2

2

如果你使用 jquery:

$.ajax({
  url: "assets/myTextFile.txt",
  success: function(data){
    alert(data);
  }
});
于 2012-06-15T15:22:24.553 回答
0

请尝试以下代码:

var xmlhttp;

if(window.XMLHttpRequest) {
    xmlhttp=new XMLHttpRequest();
}
else {
    xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}

xmlhttp.onreadystatechange=function() {
    if (xmlhttp.readyState==4 && xmlhttp.status==200) {
        alert(xmlhttp.responseText);
    }
}

xmlhttp.open("GET","assets/myTextFile.txt",true);
xmlhttp.send();
于 2012-06-15T15:30:23.520 回答