JavaScript - 如果密码不正确则重定向到其他页面
我想要的是使用另一个脚本替换“alert('这是正确的!')”,这可以使其直接打开网页,而不是先发出警报。
if (password === pass1)
alert('That Is Correct!');
else
window.location="SITE-LINK";
</script>
注意:这个脚本是为了当打开一个页面时询问密码,我只是希望当密码正确时它会继续打开页面,而不是警告消息或打开某个页面。因为这个脚本是针对模板的,所以它会打开很多不同的地址。
What I want is use another script replace the "alert('That Is Correct!')" which can make it directly open the webpage rather then come up with alert first.
if (password === pass1)
alert('That Is Correct!');
else
window.location="SITE-LINK";
</script>
Note: this script is for when open a page come up with asking password, I just want when the password is right it will continue opening the page, rather than alert message or open a certain page. Because this script is for a template, so it will open many different address.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
只要颠倒逻辑即可。
Just invert the logic.
您的意思是,当密码正确正确时,打开地址“SITE-LINK”?如果是这样,这会起作用。
Do you mean, when the password is correct, open the address 'SITE-LINK'? If so, this will work.
反转逻辑检查
Reverse the logical check