Ajax概述(必威体育精装版).ppt

  1. 1、本文档共64页,可阅读全部内容。
  2. 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
Best Wishes! This report was produced by Broadengate Systems Training Centre Thanks! * checkuser.jsp源代码: %@ page language=java import=java.util.* pageEncoding=gbk% % String path = request.getContextPath(); String basePath = request.getScheme()+://+request.getServerName()+:+request.getServerPort()+path+/; % !DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.01 Transitional//EN html head base href=%=basePath% titleMy JSP checkuser.jsp starting page/title meta http-equiv=pragma content=no-cache meta http-equiv=cache-control content=no-cache meta http-equiv=expires content=0 meta http-equiv=keywords content=keyword1,keyword2,keyword3 meta http-equiv=description content=This is my page !-- link rel=stylesheet type=text/css href=styles.css -- script type=text/javascript var httpRequest; //创建XMLHttpRequest对象 function createXMLHttpRequest(){ if(window.ActiveXObject){ //说明是IE浏览器 httpRequest = new ActiveXObject(Microsoft.XMLHTTP); }else{ //其他浏览器 httpRequest = new XMLHttpRequest(); } } //发送请求 function sendRequest(url){ alert(url); httpRequest.onreadystatechange = handleResult; //设置返回结果的处理函数 httpRequest.open(get, url, true); httpRequest.setRequestHeader(Cache-Control, no-cache); httpRequest.send(null); } //处理返回结果 function handleResult(){ if(httpRequest.readyState == 4){ if(httpRequest.status == 200){ alert(httpRequest.responseText); }else{ alert(指定页面不存在); } } } /script /head body 用户名:input name=usernamebr input type=button value=检查用户名是否被使用 onclick=createXMLHttpRequest();sendRequest(CheckUserServlet?un= + document.all.username.value); /body /html CheckUserServlet.java源代码: package com.aptech.servlet; import java.io.IOException; import java.io.PrintWriter; import javax.servlet.ServletException; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; public class CheckUserServlet extends HttpServlet { public void doGet(HttpServletRequest request, HttpServletResponse

文档评论(0)

wxc6688 + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

1亿VIP精品文档

相关文档