基本信息
源码名称:html网页用户登录界面(带输入验证)
源码大小:2.51KB
文件格式:.html
开发语言:CSS
更新时间:2020-06-11
   友情提示:(无需注册或充值,赞助后即可获取资源下载链接)

     嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):78630559

本次赞助数额为: 2 元 
   源码介绍
html网页页面:用户登录



function mima()
{
document.getElementById("password").style.background="white";
var password = document.getElementById("password").value;
var pw = document.getElementById("pwspan")
var guize2 = /^([a-zA-Z0-9]){6,15}$/i;
if (guize2.test(password)) {
pw.innerHTML=" ";
return true ;
}
else {
pw.innerHTML="密码不规范!长度须在6到15位,只能包含字母、数字,不可以含有其他符号".fontcolor("red");
return false ;
}