上章简单的介绍了一下Ajax,这章学习一下 Ajax 怎样获得字符串形式(responseText)的服务器响应数据。
通过一个小例子来看具体代码,如下图:
1.0 hello.jsp:
@H_404_11@<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>hello.jsp</title>
</head>
<body>
我是帅气的div1
</body>
</html>
2.0 index.jsp:
@H_404_11@<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>index.jsp</title>
<script type="text/javascript"> //1.0 定义XMLHttpRequest对象 var xmlHttpRequest; function ajaxTest() { //2.0 判断浏览器类型 if(window.XMLHttpRequest) { //如果使用的是Firefox、Chrome、 Opera以及IE7版本以上的浏览器 xmlHttpRequest = new XMLHttpRequest(); } else { //如果使用的是IE5 和 IE6等老版本浏览器 xmlHttpRequest = new ActiveXObject("Microsoft.XMLHTTP"); } //3.0 当服务器响应就绪时执行函数 xmlHttpRequest.onreadystatechange = readyStateChange; //4.0 设置请求类型、请求文件位置、是否异步 xmlHttpRequest.open("post","hello.jsp",true); //5.0 发送 xmlHttpRequest.send(); } function readyStateChange() { if(xmlHttpRequest.readyState == 4 && xmlHttpRequest.status == 200) { document.getElementById("div1").innerHTML = xmlHttpRequest.responseText; } } </script>
</head>
<body>
<div id="div1">
Hello! My name id div1!
</div>
<hr>
<div id="div2">
哈哈,大家好!我是div2,楼上是我小兄弟!
</div>
<input type="button" value="只更新div1" onclick="ajaxTest()">
</body>
</html>