1// 检查 E-mail 是否已被注册
 2    function CheckExists()
 3    {
 4        var e = document.getElementById("mailaddress").value;
 5        if(e != "") {
 6            if(!/(\S)+[@]{1}(\S)+[.]{1}(\w)+/.test(e))
 7            {
 8                alert("请输入格式正确的 e-mail 地址!");
 9                var email = document.getElementById ( "mailaddress" );
10                email.value = "";
11                email.focus ();
12            }
13            else
14            {
15                QuickRegisterBox.IsEMailExists(e, CheckExists_Callback);
16            }
17        }
18    }

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-12-26
  • 2021-06-11
  • 2022-12-23
  • 2021-11-29
  • 2022-02-11
猜你喜欢
  • 2022-03-03
  • 2022-12-23
  • 2022-12-23
  • 2022-01-01
  • 2021-12-03
  • 2022-12-23
  • 2021-09-15
相关资源
相似解决方案