可能重复:
密码 HTML 重定向
我在使用下面的代码时遇到了一些问题,特别window.location="http://www.google.com"
是当我输入正确的密码时,我无法让它重定向。
<div class="buttons">
<input class="orangebutton" type="submit" value="Continue" onclick="if (document.getElementById('password').value == 'hi') window.location="http://www.google.com" else alert('Wrong Password!');" />
</div>
更新:这就是我现在所拥有的,重定向仍然不起作用。
<input class="orangebutton" type="submit" value="Continue" onclick="if (document.getElementById('password').value == 'hello') window.location='http://www.google.com'; else alert('Wrong Password!');" />