这一段代码,这个圆括号不知道是否故意为之。修改成这个
var p1=/^(13[0-9]\d{8}|15[0-35-9]\d{8}|18[0-9]\{8}|14[57]\d{8})$/
然后执行函数的动作
onchange="phoneCheck(this)"
this是得到这个对象,如果你要检验输入的内容,应该是
onchange="phoneCheck(this.value)"
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"><html>
<head>
<meta http-equiv="Content-Type" content="text/htmlcharset=UTF-8">
<title>表单验证</title>
<script>
function doValidate() {
var chineseReg = /^[\u4E00-\u9FA5]{2,4}$/
if(!chineseReg.test(document.forma.name.value)) {
alert('请填写中文2到4个字!!')
document.forma.name.focus()
return false
}
var phoneNumReg = /(^[0-9]{3,4}\-{0,1}[0-9]{3,8}$)|(^[0-9]{3,8}$)|(^\([0-9]{3,4}\)[0-9]{3,8}$)|(^0{0,1}13[0-9]{9}$)/
if(!phoneNumReg.test(document.forma.phoneNum.value)) {
alert('请填写正确电话号码!!')
document.forma.phoneNum.focus()
return false
}
return true
}
</script>
</head>
<body>
<form action="" name="forma" onsubmit="return doValidate()">
姓名:<input type="text" name="name" value="姓名"><br />
电话:<input type="text" name="phoneNum"><br />
<input type="submit" value="Submit">
</form>
</body>
</html>
<html><head>
<meta http-equiv="Content-Type" content="text/html charset=gb2312" />
<title>文哥讨厌IE</title>
<script language="javascript" type="text/javascript">
function checkMobile(str) {
if(str==""){
alert("手机号不能为空!")
}
else{
var re = /^1\d{10}$/
if (re.test(str)) {
alert("正确")
} else {
alert("手机号格式错误!")
}
}
}
</script>
</head>
<body>
<input type="text" id="btn_getNum"/>
<input type="button" value="得到数字" onclick="checkMobile(btn_getNum.value)"/>
</body>
</html>
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)