本文介绍了jQuery中的用户名验证的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

哦,天哪,因为我是新开发人员,所以今天就像瓶颈一样:(

请帮忙

我需要验证用户名.该用户名只能使用字母数字,电子邮件ID也可以是用户名

我如何一起使用这两个验证

谢谢

Oh my god today am like bottlenecked since am fresh developer :(

please help some

I need to validate username .that should allow only alpha numeric and Email id also can be username

how can i use this both validation together

Thanks

推荐答案

<script type="text/javascript" language = "javascript">
 function Check(e)
    {
     var unicaode = e.charcode ? e.charcode : e.KeyCode 
 if (!((unicaode >= 48 && unicaode <= 57) || (unicaode = 64) || (unicaode >= 65 && unicaode <= 90) || (unicaode = 95) || (unicaode = 46) || (unicaode >= 97 && unicaode <= 122) ))
           {
     alert('Invalid character');
         return false;
         }
       else 
       {
         return true;
       }
     
    }
 </script>



并在TextBox事件中调用它



And call it on TextBox event

<asp:textbox id="txtInput" runat="server" style="position :absolute " onkeypress="return Check(event)" xmlns:asp="#unknown"></asp:textbox>



谢谢



Thank You



这篇关于jQuery中的用户名验证的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-20 17:06