/index.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(){
var btn=document.getElementById("btn01");
btn.onclick=function(){
//创建对象
var xhr=new XMLHttpRequest();
//设置参数
var method="post";
var url="${pageContext.request.contextPath}/AServlet"; xhr.open(method,url);
xhr.setRequestHeader("Content-type","application/x-www-form-urlencoded");
//发送请求
xhr.send("username=liuchuan");
//接受响应
xhr.onreadystatechange=function(){
if(xhr.readyState==4&&xhr.status==200){
var div1=document.getElementById("div1");
var data=xhr.responseText;
div1.innerHTML += data;
}
}
} }
</script>
</head>
<body> <button id="btn01">电风扇</button>
<div id="div1"> </div>
</body>
</html>

  /e.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" src="/web-ajax/js/jquery.min.js"></script>
<script type="text/javascript">
$(function () {
$("#btn01").click(function(){
function callback(data) {
alert(data);
div1.innerHTML += data; }
$.get("${pageContext.request.contextPath}/AServlet?&t"+Math.random(),{"username":"zhangsan"},callback);
$("#div1").html(data);//加个随机数防止浏览器缓存
})
});
</script>
</head>
<body>
<button id="btn01">电风扇</button>
<div id="div1"> </div>
</body>
</html>

  /class AServlet

package com.neuedu.servlet;

import java.io.IOException;
import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse; @WebServlet("/AServlet")
public class AServlet extends HttpServlet {
private static final long serialVersionUID = 1L; protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
String name = request.getParameter("username");
System.out.println("幸福来敲门"+name);
response.getWriter().println("<h1>hello word!</h1>");
} protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
// TODO Auto-generated method stub
doGet(request, response);
} }

  

最新文章

  1. CQRS框架:AxonFramework 之 Hello World
  2. CozyRSS开发记录11-够用的RSS源管理
  3. 自动化服务安装部署工具-Ansible
  4. Linux安装脚本需要交互之如何实现自动安装
  5. 检测PC端和移动端的方法之一
  6. 关于Yii2中CSS,JS文件的引入心得
  7. asp.net学习之Repeater控件
  8. (26)odoo中的序列运用
  9. HDOJ-三部曲-1001-Flip Game
  10. PYTHON小CASE
  11. ubuntu修改主机名称
  12. Android:创建可穿戴应用 - 自定义布局
  13. Java学习笔记--Socket和ServerSocket
  14. JavaEE Tutorials (29) - Duke辅导案例研究示例
  15. Kotlin Vertx
  16. web开发中 代码解决部分IE兼容问题
  17. Spring Security(八):2.4.3 Project Modules
  18. golang中defer的详解 转自https://blog.csdn.net/skh2015java/article/details/77081250
  19. [UE4]换枪需要做的事,容器:数组、集合、Map
  20. spring boot配置文件中 spring.mvc.static-path-pattern 配置项

热门文章

  1. PHP正则表达式 - 附录(常用正则表达式)
  2. 搭建本地SVN資料
  3. jquery显示隐藏效果
  4. (笔记)快速入门PADS logic 到 layout
  5. Git中文件属性的变化,被认为是文件有改动
  6. javaSe-hashMap
  7. 【转载】Python实现图书馆预约功能
  8. 第011课_串口(UART)的使用
  9. C++ 值传递&amp;引用&amp;地址
  10. 【转】Popclip的JSON格式化扩展