赞
踩
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>菜鸟教程(runoob.com)</title> </head> <body> <form action="demo-form.php"> 手机号: <input type="text" name="phone" maxlength="11" pattern="^(0|86|17951)?1[0-9]{10}" oninvalid="setCustomValidity('请输入11位手机号');"/> <br> <input type="submit"> </form> </body> </html>
TIP:这里只写了手机号码的验证,用作示例,若需要验证其它东西,只需在pattern属性里写对应的正则表达式即可。也可以使用input类型里除了text的其它类型来做验证,比如
<input type="email"> <input type="number">
这里我测试是用的菜鸟教程在线工具,点击旁边的菜鸟工具会进入到这个页面
转载于:https://www.cnblogs.com/huangjinyong/p/9359353.html