主頁 > 知識庫 > Ajax實現(xiàn)登錄案例

Ajax實現(xiàn)登錄案例

熱門標簽:提高電話機器人接通率 廣西智能外呼系統(tǒng)多少錢 大學(xué)校門地圖標注 外呼系統(tǒng)api對接 地圖標注與公司業(yè)務(wù)關(guān)系 荊州智能電銷機器人 福建微碼電話機器人 銷售電銷機器人詐騙 平?jīng)龈叩碌貓D標注商戶要收費嗎

Ajax登錄案例,供大家參考,具體內(nèi)容如下

Msg

package com.lbl.msg;

public class Msg {
  String msg;
  int code;

  public Msg() {
  }

  public Msg(String msg, int code) {
    this.msg = msg;
    this.code = code;
  }

  public String getMsg() {
    return msg;
  }

  public void setMsg(String msg) {
    this.msg = msg;
  }

  public int getCode() {
    return code;
  }

  public void setCode(int code) {
    this.code = code;
  }
}

RegisterServlet

package com.lbl.servlet;

import com.fasterxml.jackson.databind.ObjectMapper;
import com.lbl.msg.Msg;

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("/register")
public class RegisterServlet extends HttpServlet {
  protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
    doGet(request, response);
  }

  protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
    //1:獲取請求發(fā)送的數(shù)據(jù)
    String username = request.getParameter("username");
    response.setContentType("text/html;charset=UTF-8");
    //2:判斷用戶名是否注冊
    if("abc123".equals(username)){
      Msg msg = new Msg("用戶名已經(jīng)注冊",0);
      //用戶名已經(jīng)注冊 {"flag":false,"info":"用戶名已經(jīng)注冊"};
//      String jsonStr = "{\"flag\":false,\"info\":\"用戶名已經(jīng)注冊\"}";
      //響應(yīng)回瀏覽器
      response.getWriter().write(new ObjectMapper().writeValueAsString(msg));
    }else{
      Msg msg = new Msg("可以注冊",1);
      //用戶名沒有注冊
//      String jsonStr = "{\"flag\":true,\"info\":\"可以注冊\"}";
      //響應(yīng)回瀏覽器
      response.getWriter().write(new ObjectMapper().writeValueAsString(msg));
    }

  }
}

json_register.html

!DOCTYPE html>
html lang="en">
head>
  meta charset="UTF-8">
  title>Title/title>
  script src="js/jquery-3.3.1.js">/script>
  script type="application/javascript">
    $(function () {
      //1: 給用戶名輸入框綁定失去焦點事件(onfocus onblur)
      $("#username").on("blur",function () {
        //獲取用戶名輸入框數(shù)據(jù)
        var username = $("#username").val();
        //2:向服務(wù)器發(fā)出異步請求,讓服務(wù)器去查詢用戶名是否存在
        $.post(
          "register", //表示服務(wù)器的servlet路徑
          "username="+username, //表示向服務(wù)器發(fā)送的數(shù)據(jù)
          function (data) { // msg:用戶名已經(jīng)注冊 code:0
            if(data.code==0){
              // alert(data.info);
              $("#spanId").html(data.msg).css("color","green");
            }else {
              $("#spanId").html(data.msg).css("color","red");
            }

          },
          "json"
        );
      });
    });

  /script>
/head>
body>
div>
  font>會員注冊/font>USER REGISTER
  form class="form-horizontal" style="margin-top: 5px;">
    table>
      tr>
        td>用戶名/td>
        td>
          input type="text" id="username" name="username" placeholder="請輸入用戶名">
          span id="spanId">/span>
        /td>
      /tr>
      tr>
        td>密碼/td>
        td>
          input type="password" placeholder="請輸入密碼">
        /td>
      /tr>
    /table>
    input type="submit" value="注冊"/>
  /form>
/div>

/body>
/html>

運行效果:

以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。

您可能感興趣的文章:
  • 一款經(jīng)典的ajax登錄頁面 后臺asp.net
  • Ajax異步方式實現(xiàn)登錄與驗證
  • ajax 實現(xiàn)微信網(wǎng)頁授權(quán)登錄的方法
  • ajax實現(xiàn)登錄功能
  • Ajax實現(xiàn)帶有驗證碼的局部刷新登錄界面
  • div彈出層的ajax登錄(Jquery版+c#)
  • Ajax Session失效跳轉(zhuǎn)登錄頁面的方法
  • ajax編寫簡單的登錄頁面
  • Ajax實現(xiàn)漂亮、安全的登錄界面
  • 登錄超時給出提示跳到登錄頁面(ajax、導(dǎo)入、導(dǎo)出)

標簽:德陽 海南 衡陽 內(nèi)江 黔東 邯鄲 婁底 樂山

巨人網(wǎng)絡(luò)通訊聲明:本文標題《Ajax實現(xiàn)登錄案例》,本文關(guān)鍵詞  Ajax,實現(xiàn),登錄,案例,Ajax,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《Ajax實現(xiàn)登錄案例》相關(guān)的同類信息!
  • 本頁收集關(guān)于Ajax實現(xiàn)登錄案例的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章