1

我有以下禁止空格

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)"/>

它适用于空间,但我如何也不允许句号?

4

3 回答 3

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,'');
        }
    }
于 2013-05-26T05:57:55.140 回答
2

下面是您只想添加 /./g 以检查 .

<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>
于 2013-05-26T05:54:48.453 回答
1

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

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

或者如果需要

if(value.match(/\./g) != null) {
    alert("Dots not allowed");
}
于 2013-05-26T05:52:56.630 回答