JavaScript - 如果密码不正确则重定向到其他页面

发布于 2024-11-15 09:53:41 字数 289 浏览 2 评论 0原文

我想要的是使用另一个脚本替换“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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

格子衫的從容 2024-11-22 09:53:41

只要颠倒逻辑即可。

if (password != pass1)  
    window.location="SITE-LINK"; 
</script>

Just invert the logic.

if (password != pass1)  
    window.location="SITE-LINK"; 
</script>
天赋异禀 2024-11-22 09:53:41

您的意思是,当密码正确正确时,打开地址“SITE-LINK”?如果是这样,这会起作用。

if (password === pass1) {
    window.location="SITE-LINK";
} else {
    alert('Password is not correct');
}

Do you mean, when the password is correct, open the address 'SITE-LINK'? If so, this will work.

if (password === pass1) {
    window.location="SITE-LINK";
} else {
    alert('Password is not correct');
}
时间你老了 2024-11-22 09:53:41

反转逻辑检查

if(password!==pass1)
    window.location="SITE-LINK";

Reverse the logical check

if(password!==pass1)
    window.location="SITE-LINK";
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文