如何使用javascript防止输入字段中的空格和句号

时间:2013-05-26 05:42:13

标签: javascript forms validation field

我有以下内容禁止空格

function nospaces(t){

    if(t.value.match(/\s/g)){

        alert('Username Cannot Have Spaces or Full Stops');

        t.value=t.value.replace(/\s/g,'');

    }

}

HTML

<input type="text" name="username" value="" onkeyup="nospaces(this)"/>

它适用于空间,但我怎么能不允许完全停止?

3 个答案:

答案 0 :(得分:3)

试试这个

    function nospaces(t){
        if(t.value.match(/\s|\./g)){
            alert('Username Cannot Have Spaces or Full Stops');
            t.value=t.value.replace(/\s/g,'');
        }
    }

答案 1 :(得分:2)

下面是您想要添加/./g进行检查的示例html和javascript。

<html>
<input type="text" name="username" value="" onkeyup="nospaces(this)"/>
<script>
function nospaces(t){

    if( t.value.match(/\s/g) || t.value.match(/\./g)  ){

        alert('Username Cannot Have Spaces or Full Stops');

        t.value= (t.value.replace(/\s/g,'') .replace(/\./g,''));

    }

}
</script>
</html>

答案 2 :(得分:1)

如果没有必要使用正则表达式,您可以使用

if(value.indexOf('.') != -1) {
    alert("dots not allowed");
}

或如果需要

if(value.match(/\./g) != null) {
    alert("Dots not allowed");
}