美文网首页
HTML技巧——加密网页

HTML技巧——加密网页

作者: 三千佛塔烟云下 | 来源:发表于2019-12-07 19:16 被阅读0次

    输入密码才能访问

    代码一(放在HTML顶部或headn之间)

    <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顶部或headn之间)

    <script type="text/javascript">   

    loopy()   

    function loopy() {   

    var sWord =""  

    while (sWord != "123") {//设置密码

    sWord = prompt("输入正确密码才能登陆!")   

    }   

    alert("欢迎访问")   

    }   

    </script> 


    代码三(放在HTML顶或headn之间,输入密码以后自动跳转指定网站)

    <script type="text/javascript">

    function password() { 

    var testV = 1; 

    var pass1 = prompt('请输入密码:',''); 

    while (testV < 5) { 

    if (!pass1)   

    history.go(-1); 

    if (pass1 == "99999920") {//设置密码

    alert('密码正确,进行跳转'); 

    window.location.href="http:/baidu.com";//添加你要跳转的页面一

    break; 

    }   

    if (pass1 == "66666620") {//设置密码

    alert('密码正确,进行跳转'); 

    window.location.href="http://jys310.top";//添加你要跳转的页面二

    break; 

    testV+=1; 

    var pass1 =   

    prompt('密码错误',''); 

    if (pass1!="password" & testV ==3)   

    history.go(-1); 

    return " "; 

    }   

    document.write(password()); 

    </script>

    相关文章

      网友评论

          本文标题:HTML技巧——加密网页

          本文链接:https://www.haomeiwen.com/subject/embgwctx.html