<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<script>
var phone = prompt('请输入手机号码:');
var res = isPhone(phone);
if (res) {
console.log('其是有效手机号码!');
} else {
console.log('其不是有效手机号码!');
}
function isPhone(phone) {
if (phone.length !== 11) {
return false;
}
if (isNaN(phone)) {
return false;
}
if (phone.charAt(0) !== '1') {
return false;
}
if (!'356789'.includes(phone.charAt(1))) {
return false;
}
return true;
}
</script>
</body>
</html>
小小橙煦缘
- 粉丝: 84
- 资源: 10
最新资源
- 城镇老旧小区改造(加装电梯)考评内容和评价标准表.docx
- 城镇老旧小区改造及既有住宅加装电梯赋分权重.docx
- 底板隐蔽前监理检查记录.docx
- 出差审批单(表格模板).docx
- 第三方技术服务机构消防验收项目情况工作月汇报表.docx
- 电梯质量安全风险管控清单(安装(含修理).docx
- 飞机舱位代码表.docx
- 顶板隐蔽前监理检查记录表.docx
- 高危妊娠产前评分标准表.docx
- 高温中暑病例报告卡表格.docx
- 个体工商户营业执照颁发及归档记录表.doc
- 更换输液流程表.docx
- 公务接待审批单(表格模板).docx
- 古今地名对照表.docx
- 固定资产验收单、移交清单、处置清单.docx
- 骨关节损伤鉴定标准条款表.docx
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈