博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Ajax(Asychronous JavaScript and XML)笔记
阅读量:5081 次
发布时间:2019-06-12

本文共 1114 字,大约阅读时间需要 3 分钟。

1 Ajax简介

1 ajax概念

2 什么是同步?什么是异步?

3 ajax原理

2 JavaScript原生的ajax

 1 ajax.html代码

Insert title here

2 AjaxServlet代码

package www.test.ajax01;import java.io.IOException;import javax.servlet.ServletException;import javax.servlet.http.HttpServlet;import javax.servlet.http.HttpServletRequest;import javax.servlet.http.HttpServletResponse;public class AjaxServlet extends HttpServlet {    protected void doGet(HttpServletRequest request, HttpServletResponse response)            throws ServletException, IOException {                //response.getWriter().write("zhangsan");                /*try {            Thread.sleep(5000);        } catch (InterruptedException e) {            e.printStackTrace();        }*/                String parameter = request.getParameter("name");                response.getWriter().write(Math.random()+parameter);            }    protected void doPost(HttpServletRequest request, HttpServletResponse response)            throws ServletException, IOException {        doGet(request, response);    }}

3 注意事项

4 ajax图解

 

转载于:https://www.cnblogs.com/jepson6669/p/8359026.html

你可能感兴趣的文章
[13年迁移]Firefox下margin-top问题
查看>>
Zookeeper常用命令 (转)
查看>>
Java程序IP v6与IP v4的设置
查看>>
RUP(Rational Unified Process),统一软件开发过程
查看>>
数据库链路创建方法
查看>>
Enterprise Library - Data Access Application Block 6.0.1304
查看>>
重构代码 —— 函数即变量(Replace temp with Query)
查看>>
Bootstrap栅格学习
查看>>
程序员的数学
查看>>
聚合与组合
查看>>
jQuery如何获得select选中的值?input单选radio选中的值
查看>>
设计模式 之 享元模式
查看>>
如何理解汉诺塔
查看>>
洛谷 P2089 烤鸡【DFS递归/10重枚举】
查看>>
15 FFT及其框图实现
查看>>
Linux基本操作
查看>>
osg ifc ifccolumn
查看>>
C++ STL partial_sort
查看>>
3.0.35 platform 设备资源和数据
查看>>
centos redis 安装过程,解决办法
查看>>