規(guī)則:只能入數(shù)字和()-+四個(gè)字符
<!--
function check()
{
if (document.form.tell.value==""){
alert("請(qǐng)輸入電話!");
document.form.tell.focus();
return false;
}
else{
var Letters = "0123456789()+-";
for (i=0; i< document.form.tell.value.length; i++){
var CheckChar = document.form.tell.value.charAt(i);
if (Letters.indexOf(CheckChar) == -1){
alert("電話號(hào)碼格式不正確!");
document.form.tell.focus();
return false;
}
}
}
}
//-->
</script>
在<body>...</body>之間的表單加入下面代碼: <form method="POST" name=form action="">
<p align="center">
請(qǐng)輸入電話號(hào)碼:<input type="text" name="tell" size="20">
<input type="submit" value="提交" name="B1"></p>
</form>
更多信息請(qǐng)查看IT技術(shù)專欄