我使用了xmlhttp.open函数,我在浏览器中加载了一个文本文件 文本文件由表中的表和数据组成。 文本文件在firefox中正确呈现并以表格格式显示,但在chrome和opera中显示为纯文本。 问题出在哪里? xmlhttp1.open( “GET”, “HTTP://localhost/Company/dailystat.txt”,TRUE);
我正在使用php中的fwrite将表写入文本文件
这是我的JS代码:
function showcurrentday() {
if (window.XMLHttpRequest) {// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp1=new XMLHttpRequest();
} else {// code for IE6, IE5
xmlhttp1=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp1.onreadystatechange=function() {
if (xmlhttp1.readyState==4 && xmlhttp1.status==200) {
document.getElementById("responsecontainer1").innerHTML=xmlhttp1.responseText;
}
}
xmlhttp1.open("GET","localhost/Company/dailystat.txt",true);
xmlhttp1.send();
}