我有这段代码:
$(function(){
function load()
{
$("#queuerefresh").load("1.txt");
}
load();
setInterval(load,1000);
});
使用:http ://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js
它将文本文件的内容加载到 div 上。这设置为每 1 秒刷新一次,以便在更新文本文件时显示在 div 中。这在 Chrome 中运行良好但是,除非我手动刷新整个页面,否则它不会在 IE10 中刷新?请帮忙。