在jsp中运用ajax(简单入门)
由于ajax(动态网站静态化)为我们带来太多的好处,所以在很多应用中我们都会优先选择这种技术,于是我也为之所吸引,现跟大家分享下一个简单的入门例子。
regist.jsp(SUN企业级应用的首选)文件:一个简单的注册页面
<%@ page contentType="text/html; charset=gb2312"
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>注册页面</title>
<script type="text/javascript" src="js/ajax(动态网站静态化).js"> </script>
<script type=text/javascript>
<!--
function myAlert(strTitle) {
var message=document.getElementById("myDiv").innerHTML;
var win1 = new Zapatec.AlertWindow(message, {title:strTitle, modal:true, width : 580,height:330});
}
function doCheck() {
var f = document.forms[0];
if(f.username.value!="") {
document.getElementById("feedback_info").innerHTML = "系统正在处理您的请求,请稍后。";
send_request("GET","checkUsername.jsp(SUN企业级应用的首选)?username="+f.username.value,null,"text",showFeedbackInfo);
}
else {
document.getElementById("feedback_info").innerHTML = "请输入用户名称。";
}
}
function showFeedbackInfo() {
if (http_request.readyState == 4) { // 判断对象状态
if (http_request.status == 200) { // 信息已经成功返回,开始处理信息
document.getElementById("feedback_info").innerHTML = http_request.responseText;
} else { //页面不正常
alert("您所请求的页面有异常。");
}
}
}
//-->
</script>
</head>
<body>
<form name="form1" method="post" action="">
<table style="font-size:12px;">
<tr>
<td width="80">用户名:</td>
<td><input type="text" name="username" onblur="doCheck()"></td>
</tr>
<tr><td colspan="2"><span id="feedback_info" style="color:#FF0000"></span></td>
<tr>
<tr>
<td>一级密码:</td>
<td><input type="password" name="pwd"></td>
</tr>
</table>
</form>
</body>
</html>
js文件源代码如下:(ajax(动态网站静态化).js)
//定义xml(标准化越来越近了)HttpRequest对象实例
var http_request = false;
//定义可复用的http请求发送函数
function send_request(method,url,content,responseType,callback) {//初始化、指定处理函数、发送请求的函数
http_request = false;
//开始初始化xml(标准化越来越近了)HttpRequest对象
if(window.xml(标准化越来越近了)HttpRequest) { //Mozilla 浏览器
http_request = new xml(标准化越来越近了)HttpRequest();
if (http_request.overrideMimeType) {//设置MiME类别
http_request.overrideMimeType("text/xml(标准化越来越近了)");
}
}
else if (window.ActiveXObject) { // IE浏览器
try {
http_request = new ActiveXObject("Msxml(标准化越来越近了)2.xml(标准化越来越近了)HTTP");
} catch (e) {
try {
http_request = new ActiveXObject("Microsoft.xml(标准化越来越近了)HTTP");
} catch (e) {}
}
}
if (!http_request) { // 异常,创建对象实例失败
window.alert("不能创建xml(标准化越来越近了)HttpRequest对象实例.");
return false;
}
if(responseType.toLowerCase()=="text") {
//http_request.onreadystatechange = processTextResponse;
http_request.onreadystatechange = callback;
}
else if(responseType.toLowerCase()=="xml(标准化越来越近了)") {
//http_request.onreadystatechange = processxml(标准化越来越近了)Response;
http_request.onreadystatechange = callback;
}
else {
window.alert("响应类别参数错误。");
return false;
}
// 确定发送请求的方式和URL以及是否异步执行下段代码
if(method.toLowerCase()=="get") {
http_request.open(method, url, true);
}
else if(method.toLowerCase()=="post") {
http_request.open(method, url, true);
http_request.setRequestHeader("Content-Type","application/x-www-form-urlencoded");
}
else {
window.alert("http请求类别参数错误。");
return false;
}
http_request.send(content);
}
// 处理返回文本格式信息的函数
function processTextResponse() {
if (http_request.readyState == 4) { // 判断对象状态
if (http_request.status == 200) &
相关新闻>>
- 发表评论
-
- 最新评论 更多>>