客户端文件
<script type="text/javascript" src="js/test.js"></script>
<title>Insert title here</title>
</head>
<body>
<form>
<input type="button" name="ok" id="ok" value="测试服务器的链接">
</form>
</body>
test.js代码
/**
* ajax建立和服务器的链接,接收服务器的请求,处理服务器返回的数据
* 开发步骤:
* 创建xmlHttpRequest对象
* 处理服务器端的响应
* 打开和服务器的链接
* 发送服务
* */
function ajaxFunction(){
var xmlHttp;
try{ //Firefox
xmlHttp = new XMLHttpRequest();
}catch(e){
try{ //IE
xmlHttp = new ActiveXObject("Msxm12.XMLHTTP");
}catch(e){
try{
xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
}catch(e){}
}
}
return xmlHttp;
}
window.onload = function(){
document.getElement