可能重复:
密码 HTML 重定向
所以我有这个代码,我需要它只在添加正确密码时重定向。唯一的问题是我不知道要添加什么只会在密码为“hello”时重定向我知道使用“view-source”会显示密码,我不介意,这是我想要的方式. 我基本上只需要知道要添加什么以及在哪里添加它。
Sooo:如果在密码字段中输入“hello”,则重定向。如果将其他任何内容放入密码字段,则不执行任何操作。
<div class="wrapper">
<form class="form1" action="http://google.com">
<div class="formtitle">Enter the password to proceed</div>
<div class="input nobottomborder">
<div class="inputtext">Password: </div>
<div class="inputcontent">
<input type="password" />
<br/>
</div>
</div>
<div class="buttons">
<input class="orangebutton" type="submit" value="Login" />
</div>
</div>
我希望这很清楚并且可以理解。
更新:输入密码以继续
<div class="input nobottomborder">
<div class="inputtext">
Password:
</div>
<div class="inputcontent">
<input type="password" id="password" /><br />
</div>
</div>
<div class="buttons">
<input class="orangebutton" type="submit" value="Continue" onclick="if (document.getElementById('password').value == 'hello') location.href='members.html'; else alert('Wrong Password!');" />
</div>
</form>