摘要:
function h()
{
document.mobileform.mobile.focus();
}
function checkMobile()
{
var mobile=document.mobileform.mobile.value;
var reg0=/^13\d{5,9}$/; //130--139。至少7位
var reg1=/^153\d{4,8}$/; //联通153。至少7位
var reg2=/^159\d{4,8}$/; //移动159。至少7位
var my=false;
if (reg0.test(mobile))my=true;
if (reg1.test(mobile))my=true;
if (reg2.test(mobile))my=true;
if (!my){
doc 阅读全文
posted @ 2007-04-24 18:48 allonkwok 阅读(1489) 评论(0) 推荐(0) 编辑