15.js(带有跳转的登陆注册)

这是一个关于前端注册和登录功能的实现示例。页面包含输入用户名和密码的表单,以及注册和登录按钮。注册功能检查用户名是否以大写字母开头且长度在6-12位,密码同样6-12位。登录功能则验证用户名和密码是否匹配页面存储的注册信息。
摘要由CSDN通过智能技术生成
<!DOCTYPE html>
<html>
	<head>
		<meta charset="UTF-8">
		<title></title>
        <script src="jquery.js"></script>
	</head>
	<body>
		用户名:<input id="username" placeholder="6-12位 首字母需大写"></br>
		密码:<input id="password" type="password" placeholder="6-12位"></br>
		<input type="submit" value="注册" onclick="tap()">
		<script>
			function tap(){
				username=document.getElementById("username").value.split("")
				password=document.getElementById("password").value.split("")
				cap=new Array("A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z")
				if(username.length>5&&username.length<13&&password.length>5&&password.length<13){
					for(i=0;i<cap.length;++i){
						if(username[0]==cap[i]){
							alert("注册成功,前往登录")
							location="denglu.html?"+username+"#"+password
							break
						}else if(i==25){alert("注册失败")}
					}
				}else{alert("注册失败")}
			}
		</script>
	</body>
</html>
<!DOCTYPE html>
<html>
	<head>
		<meta charset="UTF-8">
		<title></title>
        <script src="jquery.js"></script>
	</head>
	<body>
		用户名:<input id="username" placeholder="请输入用户名:"></br>
		密码:<input id="password" type="password" placeholder="请输入密码:"></br>
		<input type="button" value="登录" onclick="tap()">
		<script>
			function tap(){
				if(location.search.split(",").join("")=="?"+document.getElementById("username").value&&location.hash.split(",").join("")=="#"+document.getElementById("password").value){
					alert("登陆成功")
				}else{alert("用户名或密码错误")}
			}
		</script>
	</body>
</html>

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值