XmlHttp異步取得網(wǎng)站數(shù)據(jù)的例子
發(fā)表時間:2024-02-06 來源:明輝站整理相關(guān)軟件相關(guān)文章人氣:
[摘要]net_lover [原作] 本文放在這里,算作一個備份吧。<script>var oDiv var xh function getXML() oDiv = document.all.m oDiv.innerHTML = "正在裝載欄目數(shù)據(jù),請稍侯......."...
net_lover [原作]
本文放在這里,算作一個備份吧。
<script>
var oDiv
var xh
function getXML()
{
oDiv = document.all.m
oDiv.innerHTML = "正在裝載欄目數(shù)據(jù),請稍侯......."
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 = "抱歉,裝載數(shù)據(jù)失敗。原因:" + xh.statusText
}
}
}
</script>
<body>
xmlhttp異步的例子:
URL:<input name=a value="http://www.knowsky.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>