给网页HTML添加访问密码才能访问,三种代码方法
admin
撰写于 2022年 12月 01 日

为避免被陌生人访问,所以想给html页面加一个简单的密码,需要密码才能访问。

其实加一段JS就可以!我最先开始贴的这段JS,这段JS代码加在body和/body中间位置即可。

方法一

<script type="text/javascript">   
function password() {   
var testV = 1;   
var pass1 = prompt('请输入密码','');   
while (testV < 3) {   
if (!pass1)   
history.go(-1);   
if (pass1 == "www.ishiguang.cn") {//初始密码www.ishiguang.cn
alert('密码正确');   
break;   
}   
testV+=1;   
var pass1 =   
prompt('密码错误!请重新输入:');   
}   
if (pass1!="password" & testV ==3)   
history.go(-1);   
return " ";   
}   
document.write(password());   
</script>  
<!--下面添加你要显示的内容或者代码-->

方法二

<script type="text/javascript">   
loopy()   
function loopy() {   
var sWord =""  
while (sWord != "www.ishiguang.cn") {//设置密码 初始密码www.ishiguang.cn
sWord = prompt("输入正确密码才能登陆!")   
}   
alert("欢迎访问")   
}   
</script> 
<!--下面添加你要显示的内容或者代码-->

方法三

<script type="text/javascript">   
function password() {   
var testV = 1;   
var pass1 = prompt('请输入密码:','');   
while (testV < 3) {   
if (!pass1)    
history.go(-1);   
if (pass1 == "www.ishiguang.cn") {//设置密码 初始密码www.ishiguang.cn
alert('口令正确,进行跳转');   
window.location.href="https://www.ishiguang.cn/";//添加你要跳转的页面
break;   
}    
testV+=1;   
var pass1 =    
prompt('密码错误','');   
}   
if (pass1!="password" & testV ==3)    
history.go(-1);   
return " ";   
}    
document.write(password());   
</script>

给网页HTML添加访问密码才能访问,三种代码方法

为避免被陌生人访问,所以想给html页面加一个简单的密码,需要密码才能访问。

其实加一段JS就可以!我最先开始贴的这段JS,这段JS代码加在body和/body中间位置即可。

方法一

<script type="text/javascript">   
function password() {   
var testV = 1;   
var pass1 = prompt('请输入密码','');   
while (testV < 3) {   
if (!pass1)   
history.go(-1);   
if (pass1 == "www.ishiguang.cn") {//初始密码www.ishiguang.cn
alert('密码正确');   
break;   
}   
testV+=1;   
var pass1 =   
prompt('密码错误!请重新输入:');   
}   
if (pass1!="password" & testV ==3)   
history.go(-1);   
return " ";   
}   
document.write(password());   
</script>  
<!--下面添加你要显示的内容或者代码-->

方法二

<script type="text/javascript">   
loopy()   
function loopy() {   
var sWord =""  
while (sWord != "www.ishiguang.cn") {//设置密码 初始密码www.ishiguang.cn
sWord = prompt("输入正确密码才能登陆!")   
}   
alert("欢迎访问")   
}   
</script> 
<!--下面添加你要显示的内容或者代码-->

方法三

<script type="text/javascript">   
function password() {   
var testV = 1;   
var pass1 = prompt('请输入密码:','');   
while (testV < 3) {   
if (!pass1)    
history.go(-1);   
if (pass1 == "www.ishiguang.cn") {//设置密码 初始密码www.ishiguang.cn
alert('口令正确,进行跳转');   
window.location.href="https://www.ishiguang.cn/";//添加你要跳转的页面
break;   
}    
testV+=1;   
var pass1 =    
prompt('密码错误','');   
}   
if (pass1!="password" & testV ==3)    
history.go(-1);   
return " ";   
}    
document.write(password());   
</script>


版权属于:admin 所有,转载请注明文章来源。

本文链接: https://ishiguang.cn/16871.html

那年今日
12月
01日
下一篇
错位时空
赞 (0)

猜您想看

评论区(3条评论)

我要评论


说话风趣的蓝领
LV1

୧(๑•̀⌄•́๑)૭ 中文测试

一只小物块
LV1

明文密码!好家伙

admin
博主
一只小物块

安全没有问题的,我自己测试过