gpt4 book ai didi

javascript - 如果条件为真,则将用户重定向到另一个 html 页面

转载 作者:太空宇宙 更新时间:2023-11-04 14:57:09 25 4
gpt4 key购买 nike

首先,我只想说我对html不是很好,我对html的了解都是我在网上自学的。

所以.. 我有一个项目,其中一部分是制作一个网站。我已经制作了网站,但我遇到了问题..

我的问题是我不想让用户访问该设置,我希望管理员只能访问该设置,我通过在设置页面中输入密码来做到这一点。所以如果用户点击设置图标,它会要求输入密码,如果密码正确则用户可以进入设置页面

我有 3 个页面(index.html 是我的主页),(我的设置代码所在的 manager.html)和(此代码所在的 index4)在 index.html 中有一段代码让用户转到 index4.html 页面在 index4.html 页面中是这段代码

<!DOCTYPE html>

<html>

<body>

<script>
var pass;
pass = prompt("please enter the password to access");
if (pass == "11111"){
<a href="manager.html">This is the link.</a>
} else {
document.write("The password you've is enter is incorrect");
}
</script>

<body>

</html>

根据我在网上了解到的信息,href="link"代码可以重定向到另一个页面。但如果它在“if 语句”中,我似乎无法使用它。当我检查元素时,我得到了这个错误“意外的 token '<'”

谁能告诉我如何改正我的错误。

最佳答案

另一种方法是像下面这样使用。检查这个link

例如:

// similar behavior as an HTTP redirect
window.location.replace("http://stackoverflow.com");

// similar behavior as clicking on a link
window.location.href = "http://stackoverflow.com";

关于javascript - 如果条件为真,则将用户重定向到另一个 html 页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40539097/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com