<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>
<head>
<title> new document </title>
<meta name="generator" content="editplus">
<meta name="author" content=www.111cn.net>
<meta name="keywords" content="">
<meta name="description" content="">
</head>
<body>
<script language="网页特效" type="text/javascript">
<!--
//创建浏览器兼容的xmlhttprequest对象
var xmlhttp;
try{
xmlhttp= new activexobject('msxml2.xmlhttp');
}catch(e){
try{
xmlhttp= new activexobject('microsoft.xmlhttp');
}catch(e){
try{
xmlhttp= new xmlhttprequest();
}catch(e){}
}
}
//定义xmlhttprequest对象的事件处理程序
xmlhttp.onreadystatechange=function(){
if(xmlhttp.readystate==4){
if(xmlhttp.status==200){
alert(xmlhttp.responsetext);
}else{
alert(xmlhttp.status);
}
}
}
//创建一个连接
xmlhttp.open("get","a.html");
//发送请求
xmlhttp.send(null);
//-->
</script>
</body>
</html>
a.html
<html>
<head>
<title> new document </title>
</head>
<body>
hello,ajax!www.111cn.net
</body>
</html>
返回responsexml详细实例。
<script language="javascript" type="text/javascript">
<!--
//建立跨浏览器的xmlhttprequest对象
var xmlhttp;
try{
xmlhttp= new activexobject('msxml2.xmlhttp');
}catch(e){
try{
xmlhttp= new activexobject('microsoft.xmlhttp');
}catch(e){
try{
xmlhttp= new xmlhttprequest();
}catch(e){}
}
}
//创建一个对xml文件的请求
xmlhttp.open("get","a.xml");
xmlhttp.onreadystatechange=function(){
if(xmlhttp.readystate==4){
if(xmlhttp.status==200){
//获取xml对象
var xmlobj=xmlhttp.responsexml;
//获取<title>结点的值
var title=xmlobj.getelementsbytagname("title")[0].text;
alert(title);
}else{
alert(xmlhttp.status);
}
}
}
xmlhttp.send(null);
//-->
</script>
a.xml