从HTML读取文件

时间:2013-01-15 16:31:32

标签: javascript html ajax google-chrome

我正在尝试将计算机中的文本文件读取到网站。我在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> 

0 个答案:

没有答案