我有一个小的Javascript,应该读取本地文本文件的内容并将其显示在浏览器屏幕上。
它可以在使用当前firefox的Windows 7上运行,但不能在使用当前firefox或chrome的fedroa 20上运行。
这是代码:

<h1>View file content</h1>

<script>
function readTextFile(file)
{
    var rawFile = new XMLHttpRequest();
    rawFile.open("GET", file, false);
    rawFile.onreadystatechange = function ()
    {
        if(rawFile.readyState === 4)
        {
            if(rawFile.status === 200 || rawFile.status == 0)
            {
                var allText = rawFile.responseText;
                alert(allText);
            }
        }
    }
    rawFile.send(null);
}

function read_status()
{
    readTextFile('file:///tmp/status.txt');
}

</script>

<input id="clickMe" type="button" value="Current status" onclick="read_status(); " />


为什么是这样?我该如何解决?

最佳答案

所以对于我想要的,答案确实很简单,不需要Java脚本,只需纯HTML:

<h1>Status </h1>

<meta http-equiv="refresh" content="1" >
<object width="100%" height="100%" type="text/plain" data="/tmp/status.txt" border="0" >

关于javascript - 读取本地文件的Javascript在Windows上有效,但在Linux上无效,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/28323259/

10-13 04:26