本文主要是介绍【ajax】xmlHttpRequest 第一个例子 服务器返回的是HTML格式,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
客户端文件
<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{ //FirefoxxmlHttp = 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
这篇关于【ajax】xmlHttpRequest 第一个例子 服务器返回的是HTML格式的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!