不能创建xmlhttprequest对象_XMLHttpRequest对象实例教程

时间:2015-09-01  来源:Java与XML  阅读:

例如使用XMLHttpRequest对象
载入textfile到一个HTML元素与XML的HTTP
如何使用XMLHttpRequest的检索新内容的HTML元素。



<script type="text/javascript">
var xmlhttp;
function loadXMLDoc(url)
{
xmlhttp=null;
if (window.XMLHttpRequest)
  {// code for Firefox, Opera, IE7, etc.
  xmlhttp=new XMLHttpRequest();
  }
else if (window.ActiveXObject)
  {// code for IE6, IE5
  xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
  }
if (xmlhttp!=null)
  {
  xmlhttp.onreadystatechange=state_Change;
  xmlhttp.open("GET",url,true);
  xmlhttp.send(null);
  }
else
  {
  alert("Your browser does not support XMLHTTP.");
  }
}

function state_Change()
{
if (xmlhttp.readyState==4)
  {// 4 = "loaded"
  if (xmlhttp.status==200)
    {// 200 = "OK"
    document.getElementById("T1").innerHTML=xmlhttp.responseText;
    }
  else
    {
    alert("Problem retrieving data:" + xmlhttp.statusText);
    }
  }
}
</script>





不能创建xmlhttprequest对象_XMLHttpRequest对象实例教程

http://m.bbyears.com/jsp/17732.html

推荐访问:
相关阅读 猜你喜欢
本类排行 本类最新