濮阳杆衣贸易有限公司

主頁(yè) > 知識(shí)庫(kù) > AJAX應(yīng)用實(shí)例之檢測(cè)用戶名是否唯一(實(shí)例代碼)

AJAX應(yīng)用實(shí)例之檢測(cè)用戶名是否唯一(實(shí)例代碼)

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

先給大家展示下效果圖,然后再給大家擼代碼,效果圖如下所示:

下面寫一個(gè)簡(jiǎn)單的例子,檢測(cè)用戶名是否唯一(直接擼代碼):

前端界面:

%@ page language="java" contentType="text/html; charset=GB18030"
  pageEncoding="GB18030"%>
!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=GB18030">
title>檢測(cè)用戶名是否唯一/title>
style type="text/css">
!--
#toolTip {
  position:absolute;
  left:331px;
  top:39px;
  width:98px;
  height:48px;
  padding-top:45px;
  padding-left:25px;
  padding-right:25px;
  z-index:1;
  display:none;
  color:red;
  background-image: url(images/tooltip.jpg);
}
-->
/style>
/head>
body style="margin: 0px;">
form method="post" action="" name="form1">
table width="509" height="352" border="0" align="center" cellpadding="0" cellspacing="0" background="images/bg.gif">
 tr>
  td height="54">nbsp;/td>
 /tr>
 tr>
  td height="253" valign="top">
  div style="position:absolute;">
  table width="100%" height="250" border="0" cellpadding="0" cellspacing="0">
   tr>
    td width="18%" height="54" align="right" style="color:#8e6723 ">b>用戶名:/b>/td>
    td width="49%">input name="username" type="text" id="username" size="32">/td>
    td width="33%">img src="images/checkBt.jpg" width="104" height="23" style="cursor:hand;" onClick="checkUser(form1.username);">/td>
   /tr>
   tr>
    td height="51" align="right" style="color:#8e6723 ">b>密碼:/b>/td>
    td>input name="pwd1" type="password" id="pwd1" size="35">/td>
    td rowspan="2">nbsp;  div id="toolTip">/div>/td>
   /tr>
   tr>
    td height="56" align="right" style="color:#8e6723 ">b>確認(rèn)密碼:/b>/td>
    td>input name="pwd2" type="password" id="pwd2" size="35">/td>
    /tr>
   tr>
    td height="55" align="right" style="color:#8e6723 ">b>E-mail:/b>/td>
    td colspan="2">input name="email" type="text" id="email" size="45">/td>
   /tr>
   tr>
    td>nbsp;/td>
    td colspan="2">input type="image" name="imageField" src="images/registerBt.jpg">/td>
   /tr>
  /table>
  /div>
  /td>
 /tr>
 tr>
  td>nbsp;/td>
 /tr>
/table>
/form>
/body>
/html>

AJAX文件:

script language="javascript">
function createRequest(url) {
  http_request = false;
  if (window.XMLHttpRequest) {                  // 非IE瀏覽器
    http_request = new XMLHttpRequest();             //創(chuàng)建XMLHttpRequest對(duì)象
  } else if (window.ActiveXObject) {               // IE瀏覽器
    try {
      http_request = new ActiveXObject("Msxml2.XMLHTTP");  //創(chuàng)建XMLHttpRequest對(duì)象
    } catch (e) {
      try {
        http_request = new ActiveXObject("Microsoft.XMLHTTP"); //創(chuàng)建XMLHttpRequest對(duì)象
      } catch (e) {}
    }
  }
  if (!http_request) {
    alert("不能創(chuàng)建XMLHttpRequest對(duì)象實(shí)例!");
    return false;
  }
  http_request.onreadystatechange = getResult;            //調(diào)用返回結(jié)果處理函數(shù)
  http_request.open('GET', url, true);                //創(chuàng)建與服務(wù)器的連接
  http_request.send(null);                    //向服務(wù)器發(fā)送請(qǐng)求
}
function getResult() {
  if (http_request.readyState == 4) {       // 判斷請(qǐng)求狀態(tài)
    if (http_request.status == 200) {      // 請(qǐng)求成功,開始處理返回結(jié)果
      document.getElementById("toolTip").innerHTML=http_request.responseText; //設(shè)置提示內(nèi)容
      document.getElementById("toolTip").style.display="block";  //顯示提示框
    } else {              // 請(qǐng)求頁(yè)面有錯(cuò)誤
      alert("您所請(qǐng)求的頁(yè)面有錯(cuò)誤!");
    }
  }
}
function checkUser(userName){
  if(userName.value==""){
    alert("請(qǐng)輸入用戶名!");userName.focus();return;
  }else{
    createRequest('checkUser.jsp?user='+userName.value);
  }
}
/script>

jsp文件:

此例并沒有連接數(shù)據(jù)庫(kù),只是用數(shù)組簡(jiǎn)單表示注冊(cè)過的用戶。

%@ page language="java" import="java.util.*" pageEncoding="GB18030" %>
%
  String[] userList={"明日科技","mr","mrsoft","wgh"};     //創(chuàng)建一個(gè)一維數(shù)組
  String user=new String(request.getParameter("user").getBytes("ISO-8859-1"),"GB18030"); //獲取用戶名
  Arrays.sort(userList);                 //對(duì)數(shù)組排序 
  int result=Arrays.binarySearch(userList,user);       //搜索數(shù)組
  if(result>-1){
    out.println("很抱歉,該用戶名已經(jīng)被注冊(cè)!");     //輸出檢測(cè)結(jié)果
  }else{
    out.println("恭喜您,該用戶名沒有被注冊(cè)!");     //輸出檢測(cè)結(jié)果
  }
%>

總結(jié)

以上所述是小編給大家介紹的AJAX應(yīng)用實(shí)例之檢測(cè)用戶名是否唯一(實(shí)例代碼),希望對(duì)大家有所幫助,如果大家有任何疑問請(qǐng)給我留言,小編會(huì)及時(shí)回復(fù)大家的。在此也非常感謝大家對(duì)腳本之家網(wǎng)站的支持!

您可能感興趣的文章:
  • 利用Ajax檢測(cè)用戶名是否被占用的完整實(shí)例
  • JQuery Ajax如何實(shí)現(xiàn)注冊(cè)檢測(cè)用戶名
  • PHP+Ajax實(shí)現(xiàn)的檢測(cè)用戶名功能簡(jiǎn)單示例
  • AJAX實(shí)現(xiàn)無(wú)刷新檢測(cè)用戶名功能
  • jQuery+Ajax實(shí)現(xiàn)用戶名重名實(shí)時(shí)檢測(cè)
  • 使用Ajax實(shí)時(shí)檢測(cè)"用戶名、郵箱等"是否已經(jīng)存在
  • PHP+Ajax檢測(cè)用戶名或郵件注冊(cè)時(shí)是否已經(jīng)存在實(shí)例教程
  • Asp.net下利用Jquery Ajax實(shí)現(xiàn)用戶注冊(cè)檢測(cè)(驗(yàn)證用戶名是否存)
  • jquery ajax 檢測(cè)用戶注冊(cè)時(shí)用戶名是否存在
  • PHP+AJAX實(shí)現(xiàn)無(wú)刷新注冊(cè)(帶用戶名實(shí)時(shí)檢測(cè))
  • PHP+AJAX實(shí)現(xiàn)無(wú)刷新注冊(cè)(帶用戶名實(shí)時(shí)檢測(cè))
  • ajax 檢測(cè)用戶名是否被占用
  • AJAX檢測(cè)用戶名是否存在的方法

標(biāo)簽:邯鄲 黔東 衡陽(yáng) 婁底 海南 德陽(yáng) 樂山 內(nèi)江

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《AJAX應(yīng)用實(shí)例之檢測(cè)用戶名是否唯一(實(shí)例代碼)》,本文關(guān)鍵詞  AJAX,應(yīng)用,實(shí)例,之,檢測(cè),;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《AJAX應(yīng)用實(shí)例之檢測(cè)用戶名是否唯一(實(shí)例代碼)》相關(guān)的同類信息!
  • 本頁(yè)收集關(guān)于AJAX應(yīng)用實(shí)例之檢測(cè)用戶名是否唯一(實(shí)例代碼)的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章
    龙游县| 渝北区| 库车县| 邯郸市| 西丰县| 古交市| 清河县| 游戏| 安福县| 阳江市| 门头沟区| 龙胜| 南汇区| 宝坻区| 无锡市| 炉霍县| 伽师县| 龙川县| 乌什县| 赤城县| 溧阳市| 巨野县| 资溪县| 昌邑市| 濮阳县| 宝丰县| 南康市| 仁布县| 长寿区| 筠连县| 安阳市| 鄂尔多斯市| 沙河市| 秭归县| 昌乐县| 西充县| 奉化市| 府谷县| 新巴尔虎右旗| 英吉沙县| 平阴县|