0

我正在尝试将文本文件从我的计算机读取到网站。我让它在 IE 中工作,但我似乎无法让它在 Chrome 中工作。我根本不擅长html,所以任何帮助都会很棒!

<html>
<body>

    <div id = "content">
    </div>

    <script lang = "javascript">

    if (window.XMLHttpRequest)
    {
        xhttp=new XMLHttpRequest();
    }
    else // Internet Explorer 5/6
    { 
        xhttp=new ActiveXObject("Microsoft.XMLHTTP");
    }
    xhttp.open("GET","./Test.txt",false);
    xhttp.send("");
    xmlDoc=xhttp.responseText;

    document.getElementById('content').innerHTML = xmlDoc;
    </script>

</body>
</html> 
4

1 回答 1

0

使用此处的 Javascript 文件 API示例执行此操作

于 2013-01-15T16:36:02.327 回答