XmlHttp异步获取网站数据的例子

2018-09-06 12:07

阅读:890

  net_lover [原作]

  本文放在这里,算作一个备份吧。

  <script>
var oDiv
var xh
function getxml(标准化越来越近了)()
{
oDiv = document.all.m
oDiv.style.display=
xh = new ActiveXObject(Microsoft.xml(标准化越来越近了)HTTP)
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>
xml(标准化越来越近了)http异步的例子:
URL:<input name=a value=
<input onclick=getxml(标准化越来越近了)() type=button value=得到源代码>
<input onclick=if(xh xh.responseText) {alert(xh.responseText);oDiv.innerHTML=xh.responseText} type=button value=显示源代码>
<p id=m></p>


评论


亲,登录后才可以留言!