在网站中显示一个txt文件,并在没有页面刷新的情况下进行更新

时间:2013-07-14 13:49:33

标签: javascript text refresh

我有一个txt文件,其中包含某些设备的状态,如下所示

data.txt: 
90 = heat_index_limit
33 = lights_limit
45 = humidity_limit
500 = chart_life_time
off : AIRC
off : lights
off : shutters

这些值随着时间而变化。当设备打开时,例如空气状况,线路变为on:AIRC

我希望这些设备的状态能够在网站实时更改时显示,而无需刷新页面(我猜是使用javascript)

我已经有了一个javascript刷新功能,它可以为一个图像执行此操作,该图像也会一直更改,但我无法为文本文件执行此操作。你能帮忙吗?我是网页设计的菜鸟

这是我到目前为止尝试过的代码

on html body:

   body onload="refresh(); refresh2();"

然后:

<div id="status"></div>

和脚本

</script>
<script language="javascript" type = "text/javascript">

function refresh2() {
            var reader = new FileReader();
            reader.onload = function () {
                file = fopen(getScriptPath("data.txt"), 0);
                file_length = flength(file);
                $(".content").load("file.html");
                document.getElementById("status").innerText = content;    
        }
}
window.onload=function(){

    setInterval(function(){refresh2()}, 1000 ); 
}
</script>

0 个答案:

没有答案