1. ホーム
  2. Web プログラミング
  3. AJAX関連

ユーザー名が占有されているかどうかを検出するためにAjaxを使用する完全な例

2022-01-15 04:58:25

人向けです。AjaxとjQueryの入門編

ユーザー名検証を実装するためにAjaxを使用する

jQueryを使ってヒントを出す

ユーザーが登録したときに、ユーザー名が登録されているかどうかの検出を実装するためにAjaxを使用し、多くの詳細は、単純な普及を与えるために実装されていません。

<%@ page language="java" contentType="text/html; charset=utf-8"
 pageEncoding="utf-8"%>
<!DOCTYPE html PUBLIC "-/W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>User registration page</title>
<script src="https://libs.baidu.com/jquery/1.8.3/jquery.min.js"></script>
<script type="text/javascript">
	var xmlHttp;
	function createXMLHttpRequest(){
		if(window.XMLHttpRequest){
			xmlHttp = new XMLHttpRequest();
		}else if(window.ActiveXObject){
			xmlHttp = new ActiveXObject("Microsoft.XMLHttp");
		}
	}
	function validate(account){
		createXMLHttpRequest();
		xmlHttp.open("Get","ValidateServlet?account="+account,true);
		xmlHttp.onreadystatechange = callback;
		xmlHttp.send(null);
	}
	function callback(){
		if(xmlHttp.readyState == 4){
				if(xmlHttp.status==200){
					var text = xmlHttp.responseText;
					if(text=="true"){
						//document.getElementById("msg").innerHTML = "The phone number has been registered";
						$("#msg").text("This cell phone number has been registered");
						$("#sub").attr("disabled","true");//add the disabled attribute to make the button unavailable
					}else{
						//document.getElementById("msg").innerHTML = "";
						$("#msg").text("");
						$("#sub").removeAttr("disabled");//Remove the disabled attribute to make the button available
						
					}
				}else{
					alert("Request failed, error code="+xmlHttp.status);
				}
		}
	}
	function checkInfo(){
		var account = $("#account").val();
		var pwd1 = $("#pwd1").val();
		var pwd2 = $("#pwd2").val();
		if(account==""||account==null){
			$("#msg").text("Account cannot be empty");
			$("#sub").attr("disabled","true");
			return false;
		}
		if(pwd1==""||pwd1==null||pwd2==""||pwd2==null|||pwd1!=pwd2){
			$("#info").text("Password cannot be empty or inconsistent twice");
			$("#sub").attr("disabled","true");
			return false;
		}
		$("#msg").text("");
		$("#info").text("");
		$("#sub").removeAttr("disabled");
	}
	function submit(){
		checkInfo();
		$("#reg").submit();
	}
 
</script>
</head>
<body>
<form id="reg" name="reg" action="RegisterServlet" method="post">
account:<input type="text" name="account" id="account" onblur="validate(this.value);">
<span id="msg" style="color:red">Please enter your cell phone number</span><br>
Password: <input type="password" id="pwd1" name="password1" onblur="checkInfo();"><br>
Confirm password: <input type="password" id="pwd2" name="password2" onblur="checkInfo();">
<span id="info" style="color:red"></span><br>
<input type="button" id="sub" value="submit" onclick="submit();">
</form>
</body>
</html>

以下はValidateServletのモック実装で、実際のデータベーステーブルのデータ検出は行わないので、自分で行うことができます。

package com.ambow.servlet;
 
import java.io.IOException;
import java.io.PrintWriter;
 
import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
 
@WebServlet("/ValidateServlet")
public class ValidateServlet extends HttpServlet {
	private static final long serialVersionUID = 1L;
 public ValidateServlet() {
  super(); 
 }
	protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
		PrintWriter pw = response.getWriter();
		String account = request.getParameter("account");
		System.out.println("account"+account);
		if("123".equals(account)) {
			pw.print("true");
		}else {
			pw.print("false");
		}
	}
	protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
		doGet(request, response);
	}
}

ユーザー名が占有されているかどうかを検出するためにAjaxの使用に関するこの記事は、ユーザー名のより関連するAjaxの検出は、スクリプトの家の以前の記事を検索してくださいまたは以下の関連記事を閲覧し続ける占有コンテンツですあなたがよりスクリプトの家をサポートしてくれることを願って!導入されています。