码迷,mamicode.com
首页 > 其他好文 > 详细

验证用户名

时间:2020-04-20 18:52:58      阅读:59      评论:0      收藏:0      [点我收藏+]

标签:验证用户名   doctype   javascrip   indexof   write   script   oct   type   char   

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
</head>
<body>
<script type="text/javascript">
var account = ‘maoyuxuanshigede‘;
if(account.length < 3 || account.length > 10){
document.write(‘您的账号或者密码有误,账号长度应该为3~10之间,密码为3~16之间‘+"<br />")
}
if(account.toLowerCase().indexOf(‘mao‘) !== -1){
document.write(‘用户名不能包含敏感词‘)
}
</script>
</body>
</html>

验证用户名

标签:验证用户名   doctype   javascrip   indexof   write   script   oct   type   char   

原文地址:https://www.cnblogs.com/jiaqi818/p/12739652.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!