网站首页/技术开发列表/内容

检查电话号码的正确性

技术开发2019-05-25阅读

在这里只能入数字和()-+四个字符,这样对输入的电话号码起到了一定的检查. 请输入电话号码:在<head>...</head>之间加入如下代码: 
<script LANGUAGE="javascript">
<!--
function check()
{
if (document.form.tell.value==""){
  alert("請輸入電話號碼!");
  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("電話號碼格式不正確!");
       document.form.tell.focus();
       return false;
      }
    }
  }
}
//-->
</script> 在<body>...</body>之间的表单.
<form method="POST" name=form action="" onSubmit="return check();">
<p align="center">
   请输入电话号码:<input type="text" name="tell" size="20">
<input type="submit" value="提交" name="B1"></p>
</form>

……

相关阅读