net_lover [原著]
本文放在這裡,算是備份吧。
<script>
var oDiv
var xh
function getXML()
{
oDiv = document.all.m
oDiv.innerHTML = "正在裝載欄位數據,請稍侯......."
oDiv.style.display= ""
xh = new ActiveXObject("Microsoft.XMLHTTP")
xh.onreadystatechange = getReady
xh.open("GET",a.value,true)
xh.send()
}
function getReady()
{
if(xh.readyState==4)
{
if(xh.status==200)
{
oDiv.innerHTML = "完成"
}
else
{
oDiv.innerHTML = "抱歉,裝載資料失敗。原因:" + xh.statusText
}
}
}
</script>
<body>
xmlhttp異步的範例:
URL:<input name=a value=" http://www.downcodes.com " style="width:600px">
<input onclick="getXML()" type="button" value="得到原始碼">
<input onclick="if(xh && xh.responseText) {alert(xh.responseText);oDiv.innerHTML=xh.responseText}" type="button" value="顯示原始碼">
<div id=m></div>