使用ajax验证信息

2021-04-24 17:28

阅读:337

标签:red   context   密码   用户   mamicode   lse   ajax验证   ima   image   

使用ajax验证信息

  1. controller

    @RequestMapping("/check")
    public String check(String username, String password) {
        String msg = "";
        if (username != null) {
            if ("admin".equals(username)) {
                msg = "ok";
            } else {
                msg = "用户名错误";
            }
        }
        if (password != null) {
            if ("123456".equals(password)) {
                msg = "ok";
            } else {
                msg = "密码错误";
            }
        }
        return msg;
    }
  2. username,password输入框和提示

    用户名:

    密码:

  3. checkid和checkpwd

  4. 页面效果

    技术图片

使用ajax验证信息

标签:red   context   密码   用户   mamicode   lse   ajax验证   ima   image   

原文地址:https://www.cnblogs.com/pinked/p/12233579.html


评论


亲,登录后才可以留言!