切换风格

默认晚霞 雪山 粉色心情 伦敦 花卉 绿野仙踪 加州 白云 星空 薰衣草 城市 简约黑色 简约米色 龙珠
回复 0

3788

主题

3788

帖子

1万

积分

论坛元老

Rank: 8Rank: 8

积分
12604
【ixhao】HTML页面输入密码才能访问加密代码[复制链接]
发表于 2022-4-8 14:37:20 | 显示全部楼层 |阅读模式
  

当我们写一个html页面的时候,如果想要实现输入密码显示的时候,那么代码是什么呢?下面我来给大家写一下三种代码:
代码一:HTML顶部或head之间:
<script type="text/javascript">   
function password() {   
var testV = 1;   
var pass1 = prompt('请输入密码','');   
while (testV < 3) {   
if (!pass1)   
history.go(-1);   
if (pass1 == "123") {//初始密码123   
alert('密码正确');   
break;   
}   
testV+=1;   
var pass1 =   
prompt('密码错误!请重新输入:');   
}   
if (pass1!="password" & testV ==3)   
history.go(-1);   
return " ";   
}   
document.write(password());   
</script>  
<!--下面添加你要显示的内容或者代码-->
这里是显示内容!
代码二:加在HTML顶部或head之间:
<script type="text/javascript">   loopy()   function loopy() {   var sWord =""  while (sWord != "123") {//设置密码sWord = prompt("输入正确密码才能登陆!")   }   alert("欢迎访问")   }   </script> <!--下面添加你要显示的内容或者代码-->这里是显示内容!代码三:加在HTML顶或head之间:
<script type="text/javascript">   function password() {   var testV = 1;   var pass1 = prompt('请输入密码:','');   while (testV < 3) {   if (!pass1)    history.go(-1);   if (pass1 == "123") {//设置密码alert('口令正确,进行跳转');   window.location.href="https://www.kxdao.net";//添加你要跳转的页面break;   }    testV+=1;   var pass1 =    prompt('密码错误','');   }   if (pass1!="password" & testV ==3)    history.go(-1);   return " ";   }    document.write(password());   </script>
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

手机版|小黑屋|不懂 ( 粤ICP备14042591号-1 )|网站地图

GMT+8, 2024-11-21 21:52 , Processed in 0.073661 second(s), 27 queries .

Powered by Discuz! X3.4

© 2001-2013 Comsenz Inc.

返回顶部