我正在尝试组合这个javascript代码

I am trying to combine this javascript code?

本文关键字:javascript 代码 组合      更新时间:2023-09-26

因此,我正在尝试对在我的网站上显示一些文本的按钮进行密码保护。这是我的密码保护脚本的代码。

<SCRIPT>
  function passWord() {
    var testV = 1;
    var pass1 = prompt('Enter The Code On Your Card Here.',' ');
    while (testV < 3) {
      if (!pass1)
        history.go(-1);
      if (pass1.toLowerCase() == "abc123") {
        window.open('card1e.html');
        break;
      }
      testV+=1;
      var pass1 =
      prompt('Access Denied - Password Incorrect, Please Try Again.','Password');
    }
    if (pass1.toLowerCase()!="password" & testV ==3)
      history.go(-1);
    return " ";
  }
</SCRIPT>
<CENTER>
  <FORM>
    <input type="button" value="Have This Card? Click Here!" onClick="passWord()">
  </FORM>
</CENTER>

我使用的显示/隐藏脚本是:

<script>
  <a href="javascript:hideshow(document.getElementById('adiv'))">Click here</a>
  <script type="text/javascript">
  function hideshow(which){
    if (!document.getElementById)
      return
    if (which.style.display=="block")
      which.style.display="none"
    else
      which.style.display="block"
  }
</script>
<div id="adiv" style="font:24px bold; display: block">Now you see me</div>

Is不知道如何获得它,这样当正确输入密码时,它会显示可以显示/隐藏一些文本的按钮。

这应该能在中工作

<!DOCTYPE html>
<html>
<head>
<SCRIPT>
    // Show Div if its hidden
    function showdiv(){
        // get the div   
        which = document.getElementById('adiv');
        // show hide
        if (!which)
            return
        else if (which.style.visibility=="hidden")
            which.style.visibility="visible";
    }
    // Test User Credentials
    function passWord(){
        var testV = 1;      
        var pass1 = prompt('Enter The Code On Your Card Here.');        // no need to give a space here
        while (testV < 3) {
            if (!pass1)
                history.go(-1);
            if (pass1.toLowerCase() == "abc123") {
                showdiv()  
                alert("Redirecting in 3 secs...")
                window.setTimeout(redirect,3000);       //wait for 3 secs then redirect to card1.html                       
                break;
            }
            testV+=1;
            var pass1 = prompt('Access Denied - Password Incorrect, Please Try Again.',"password");
        }
        if (pass1.toLowerCase()!="password" & testV ==3)
        history.go(-1);
        return " ";
    }
    function redirect(){
        window.open('card1e.html');
    }
</SCRIPT>
</head>
<body>
<div id="adiv" style="font:24px bold; visibility:hidden">Now you see me</div>
<CENTER>
<input type="button" value="Click to enter credentials toe see the text block" onClick="passWord()">  
</CENTER>
</body>