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

问题描述

我有一个文本框,不需要用户输入任何可以输入的特殊字符

1. A-Z
2. a-z
3. 0-9
4. Space.

I have a textbox and it need the user not allow to enter any specialcharecters He can enter

1. A-Z
2. a-z
3. 0-9
4. Space.

推荐答案



<script type = "text/javascript">
function checkField(fieldname)
{
if (/[^0-9a-bA-B\s]/gi.test(fieldname.value))
{
alert ("Only alphanumeric characters and spaces are valid in this field");
fieldname.value = "";
fieldname.focus();
return false;
}
}
</script>



并这样称呼:



and call it like this:

<input type="text" name="name" id="name"  onblur="checkField(this)">


这篇关于如何在javascript中验证字母数字的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-11 10:01