主頁 > 知識(shí)庫 > Ajax郵箱、用戶名唯一性驗(yàn)證實(shí)例代碼

Ajax郵箱、用戶名唯一性驗(yàn)證實(shí)例代碼

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

廢話不多說了,直接給大家貼代碼了,具體代碼如下所示:

 script type="text/javascript">
    $(function () { 
      $("#txtEmail").blur(function () {
        $.ajax({
          type: "post",
          url: "reg.ashx?email=" + $.trim($("#txtEmail").val()) + "d=" + (+new Date()),
          success: function (data) {
            var vCount = parseInt(data);
            if (vCount == 0) {
              alert("郵箱可以使用");
            }
            else {
              alert("郵箱已經(jīng)被占用");
            }
          }
        });
      });
      $("#checkpwd").blur(function () {
        return CheckPwd();
      });
    });
    function CheckPwd()
    {
      var bCheck = true;
      if ($.trim($("#pwd").val()) != $.trim($("#checkpwd").val()))
      {
        alert("兩次密碼輸入不一致");
        bCheck = false;
      }
      return bCheck;
    }
  /script>

reg.ashx代碼:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace WebT1.Ti.html2
{
  /// summary>
  /// reg 的摘要說明
  /// /summary>
  public class reg : IHttpHandler
  {
    public void ProcessRequest(HttpContext context)
    {
      if (context.Request["email"] != null)
      {
        string strEmail = context.Request["email"];
        ListUserModel> lstUser = DataService.GetUserList();
        var v = lstUser.Where(p => p.Email == strEmail);
        int iCount = 0;
        if (v.Count() > 0)
        {
          iCount = 1;
        }
        context.Response.ContentType = "text/plain";
        context.Response.Write(iCount.ToString());
      }
    }
    public bool IsReusable
    {
      get
      {
        return false;
      }
    }
  }
  public class DataService
  {
    /// summary>
    /// 模擬已注冊(cè)用戶數(shù)據(jù)
    /// /summary>
    public static ListUserModel> GetUserList()
    {
      var list = new ListUserModel>();
      list.Add(new UserModel() { Email = "t1@demo.com" });
      list.Add(new UserModel() { Email = "t2@demo.com" });
      list.Add(new UserModel() { Email = "t3@demo.com" });
      list.Add(new UserModel() { Email = "t4@demo.com" });
      list.Add(new UserModel() { Email = "t5@demo.com" });
      return list;
    }
  }
  public class UserModel
  {
    public string Email { get; set; }
  }
}

總結(jié)

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

您可能感興趣的文章:
  • PHP+Ajax異步通訊實(shí)現(xiàn)用戶名郵箱驗(yàn)證是否已注冊(cè)( 2種方法實(shí)現(xiàn))
  • Ajax實(shí)時(shí)驗(yàn)證用戶名/郵箱等是否已經(jīng)存在的代碼打包

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

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