我有以下内容禁止空格
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)"/>
它适用于空间,但我怎么能不允许完全停止?
答案 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");
}