問題在下面。目標是在html中顯示txt文件中的內容。 頭的HTML文件:html代碼總是顯示一個txt文件內的消息
<script type="text/javascript">
function loadXMLDoc() {
var xmlhttp;
if (window.XMLHttpRequest) {
xmlhttp=new XMLHttpRequest();
} else {
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function() {
if (xmlhttp.readyState==4 && xmlhttp.status==200) {
document.getElementById("myDiv").innerHTML=xmlhttp.responseText;
}
}
xmlhttp.open("GET","news.txt",true);
xmlhttp.send();
}
</script>
顯示部分體:
<div class="span-3" id="right-side"> <div id="myDiv">Your text here!
</div><br><br><br><button type="button" onclick="loadXMLDoc()">Click Here!</button>
但問題,它需要用戶干預。我不想要按鈕,文本需要始終顯示。我應該做什麼差異?
這個怎麼樣? '
' –它不適合我嗎?我聽說我需要解析html。怎麼做? – mreccentric