Ajax之get、post实例(最原始的XMLHttpServlet)

前端之家收集整理的这篇文章主要介绍了Ajax之get、post实例(最原始的XMLHttpServlet)前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

2014年12月23日15:36:10 天气阴 心情极度低落

ajaxGet2014122301.jsp

<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<Meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
<script type="text/javascript">
	
	window.onload = function() {
		
		//1.获取a节点,并为其添加onclick响应函数
		document.getElementsByTagName("a")[0].onclick = function() {
			
			//3.创建一个XMLHttpRequest对象
			var request = new XMLHttpRequest();
			
			//4.准备发送请求的数据: url
			var url= this.href + "?time = " + new Date();
			var method = "GET";
			
			//5.调用XMLHttpRequest 对象的open方法
			request.open(method,url);
			
			///6.调用XMLHttpRequest 对象的send方法
			request.send(null);
			
			//7.为XMLHttpRequest对象添加onreadystatechange响应函数			
			request.onreadystatechange = function() {
				//8.判断响应是否完成:XMLHttpRequest对象的readyState 属性为4的时候
				if (request.readyState == 4) {
					//9.再判断响应是否可用:XMLHttpRequest 对象的 status 为200
					if (request.status == 200 || request.status == 304) {
						//10.打印响应结果:responseText;
						alert(request.responseText);
					}
				}
			}
			//2.取消a节点的默认行为
			return false;
		}
	}
</script>
</head>
<body>
	<a href="HelloAjax.txt">helloAjax2014122301</a>
</body>
</html>

ajaxPost2014122301.jsp

<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<Meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
<script type="text/javascript">
	
	window.onload = function() {
		document.getElementsByTagName("a")[0].onclick = function() {
			var request = new XMLHttpRequest();
			var url= this.href + "?time = " + new Date();
			var method = "POST";
			request.open(method,url);
			
			request.setRequestHeader("ContentType","application/x-www=form-urlencoded")
			request.send("name='atguigu'");
			request.onreadystatechange = function() {
				if (request.readyState == 4) {
					if (request.status == 200 || request.status == 304) {
						alert(request.responseText);
					}
				}
			}
			return false;
		}
	}
</script>
</head>
<body>
	<a href="HelloAjax.txt">helloAjax2014122301</a>
</body>
</html>
需要注意的地方是 对于post请求必须执行完request.setRequestHeader("ContentType","application/x-www=form-urlencoded")而后再执行request.send("name='atguigu'");,否则异步提交不起作用。 原文链接:https://www.f2er.com/ajax/163963.html

猜你在找的Ajax相关文章