判断一段字符中是否含有电话号码的方法

2008-02-23 07:55:31来源:互联网 阅读 ()

新老客户大回馈,云服务器低至5折

<script LANGUAGE="javascript">
<!--
function checkNum(str){return !/\d{6}/.test(str)}
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>

<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>

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:探讨关于禁止同一用户在同一时间在不同机器重复登陆的问题

下一篇:撕页广告代码及简介