碧海蓝天
今朝有酒今朝醉 明日无茶明日醒
posts - 32,comments - 15,trackbacks - 4

function ismobile(mobile){
    if(mobile.length!=11){
        alert('请输入合法的手机号码!');
        document.getElementById('mobile').focus();
        return false;
    }

    var myreg = /^(((13[0-9]{1})|15[0389]{1})+\d{8})$/;
    if(!myreg.test(mobile)){
        alert('请输入合法的手机号码!');
        document.getElementById('mobile').focus();
        return false;
    }
    return true;
}

posted @ 2008-03-05 17:23 碧海蓝天 阅读(434) 评论(0) 编辑