博客
关于我
jQuery 调用 Ajax 实现查询的局部更新 (jsp + servlet + jQuery + Ajax)
阅读量:393 次
发布时间:2019-03-05

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

jQuery?Java Servlet??AJAX???????

???????????jQuery??Java Servlet?????????????????????????

??????

???????????HTML????????????

  • ??????????????
  • ????????AJAX??
  • ??????????????????

???????

    

????????

??????Java Servlet??????????

  • ???????????
  • ????????????
  • ?????????
  • ???????

    package com.syrdbt.system.servlet;import javax.servlet.ServletException;import javax.servlet.annotation.WebServlet;import javax.servlet.http.HttpServlet;import javax.servlet.http.HttpServletRequest;import javax.servlet.http.HttpServletResponse;import java.io.IOException;@WebServlet("/TestAjaxServlet")public class TestAjaxServlet extends HttpServlet {    protected void doGet(HttpServletRequest request, HttpServletResponse response)            throws ServletException, IOException {        request.setCharacterEncoding("utf-8");        String name = request.getParameter("info");        System.out.println("?????? " + name);                if(name.equals("abc")) {            response.getWriter().print("success");        } else {            response.getWriter().print("failed");        }    }        protected void doPost(HttpServletRequest request, HttpServletResponse response)            throws ServletException, IOException {        doGet(request, response);    }}

    ??????

  • HTML????

    • ????jQuery?
    • ?????????ID???JavaScript??
  • JavaScript????

    $(function() {    $("#search").click(function() {        var value = $("#info").val();        $.ajax({            type: 'POST',            url: "TestAjaxServlet",            data: "info=" + value,            success: function(result) {                $("#show").html(result);            }        });    });});
  • ????????

    • ???????
    • ????????
    • ????
  • ?????

    ?????????????

  • ???????
  • ??????AJAX??
  • ???????????
  • ??????????
  • ??????????????????????????????HTML???????????????

    转载地址:http://fpkzz.baihongyu.com/

    你可能感兴趣的文章
    PHP 并发扣款,保证数据一致性(悲观锁和乐观锁)
    查看>>
    php 延迟静态绑定static关键字
    查看>>
    php 引用 -
    查看>>
    Redis入门
    查看>>
    PHP 截取字符串乱码的解决方案
    查看>>
    php 接口类与抽象类的实际作用
    查看>>
    PHP 插入排序 -- 折半查找
    查看>>
    PHP 支持8种基本的数据类型
    查看>>
    php 放大镜,放大镜放大图片效果
    查看>>
    php 数据库 表格数据,php数据库到excel表格-php怎么把数据库数据放到表格里
    查看>>
    PHP 数据库连接池实现
    查看>>
    php 数组 区别,PHP中数组的区别
    查看>>
    PHP 数组怎么添加一个元素
    查看>>
    PHP 文件上传
    查看>>
    PHP 文件操作
    查看>>
    php 文字弹幕效果代码,HTML5文字弹幕效果
    查看>>
    php 时间日期函数,获取今天开始时间,结束时间
    查看>>
    PHP 构造函数的重载
    查看>>
    php 标准规范
    查看>>
    PHP 浮点型精度运算相关问题
    查看>>