我正在尝试从服务器读取文本文件并显示在我网页上的 div 中。这是我的 AJAX/Javascript:
<body onload="loadXMLDoc()">
<script>
function loadXMLDoc()
{
var xmlhttp;
if (window.XMLHttpRequest)
{// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
}
else
{// code for IE6, IE5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function()
{
if (xmlhttp.readyState==4 && xmlhttp.status==200)
{
document.getElementById("myDiv").innerHTML=xmlhttp.responseText.replace("\n", "<br />");
}
}
xmlhttp.open("GET","ajax_info_test.txt?t=" + Math.random(),true);
xmlhttp.send();
setInterval (loadXMLDoc, 1000);
}
</script>
<div id="myDiv"></div>
</body>
它只在自己的行上显示文本文件中的第一行。我怎样才能为每条线单独执行此操作?