jquery的ajax例子

2022-09-17 15:03:52 浏览数 (1)

大家好,又见面了,我是你们的朋友全栈君。

Jquery实现Ajax登录验证

页面

代码语言:javascript复制
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
    <title>Title</title>
    <script src="${pageContext.request.contextPath}/static/js/jquery-3.6.0.js"></script>
    <script>
        function a1() {
            $.post({
                url:"${pageContext.request.contextPath}/a3",
                data:{"name":$("#name").val()},
                success:function (data) {
                    if(data.toString()==='ok'){
                        $("#userInfo").css("color","green");
                    }else {
                        $("#userInfo").css("color","red");
                    }
                    $("#userInfo").html(data);
                }
            })
        }
        function a2() {
            $.post({
                url:"${pageContext.request.contextPath}/a3",
                data:{"pwd":$("#pwd").val()},
                success:function (data) {
                    if(data.toString()==='ok'){
                        $("#pwdInfo").css("color","green");
                    }else {
                        $("#pwdInfo").css("color","red");
                    }
                    $("#pwdInfo").html(data);
                }
            })
        }
    </script>
</head>
<body>

<p>
    用户名:<input type="text" id="name" οnblur="a1()">
    <span id="userInfo"></span>
</p>

<p>
    密码:<input type="text" id="pwd" οnblur="a2()">
    <span id="pwdInfo"></span>
</p>

</body>
</html>

请求

代码语言:javascript复制
@RequestMapping("/a3")
public String a3(String name,String pwd){ 
   
    String msg="";
    if(name!=null){ 
   
        //admin在数据库查
        if("admin".equals(name)){ 
   
            msg="ok";
        }else { 
   
            msg="用户名错误";
        }
    }
    if(pwd!=null){ 
   
        //admin在数据库查
        if("123456".equals(pwd)){ 
   
            msg="ok";
        }else { 
   
            msg="密码错误";
        }
    }
    return msg;
}

使用Jquery的Ajax需要先导入js文件

然后使用$.post(url,data,success)进行异步交互post ,get ,ajax方法都可以实现

发布者:全栈程序员栈长,转载请注明出处:https://javaforall.cn/158745.html原文链接:https://javaforall.cn

0 人点赞