只能匹配整數,不包括小數點、字母、漢字等..
用來驗證QQ的。
問題補充:我輸入小數點也照樣接收...麻煩改改
回 陽光上的橋 試了,123456.7 照樣通過
function checknum(theform) {
if (theform.QQ.value.search(/^[0-9]{5,9}$/) != -1 ){
return true;
}
else {
alert("請正確輸入QQ號!");
return false;
}
}
正確如下:
<script type="text/Javascript">
function checknum(theform) {
if(!/^\d{5,9}$/.test(theform.QQ.value)){
alert("請正確輸入QQ號!");
return false;
}
return true;
}
</script>
<form action="" method="get" onsubmit="return checknum(this)"> QQ:<input name="QQ" type="text" /> <input name="" type="submit" value="提交">
</form>