我有一个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>