gpt4 book ai didi

javascript - Window.location 不工作我已经尝试了一切

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:02:06 25 4
gpt4 key购买 nike

/*jslint plusplus: true*/
function signin() {
'use strict';
localStorage.setItem("index", 0);
var get, sn, get1, text, i;
get = localStorage.getItem("login");
get1 = JSON.parse(get);
sn = document.getElementById("studentnumber").value;

if (sn === get1[0].student) {
window.alert("Welcome, " + get1[0].fName + get1[0].lName);
window.location = 'Newsfeed.html';
} else {
window.alert = "Sorry Student Number or Password is incorrect! Did up already make an account?";
}

}

window.location 不工作。页面名称是正确的,程序会在信息正确时给出 window.alert,但它会加载到新页面。有谁知道为什么它不起作用?请帮忙!我已经做了好几个小时了。

最佳答案

您从本地文件系统打开了您的 html。虽然乍一看它似乎可以工作,但出于安全原因,许多功能都被禁用了。其中之一可能是页面重定向。

我建议您使用一些开发网络服务器,并通过它来提供您的文件。对于 nodejs,请参见 express 或 connect,对于 python,请参见以下内容:

  • 导航到您的网络应用程序的根目录
  • 为 python3 运行 python -m http.server,或为 python2 运行 python -m SimpleHTTPServer
  • 在浏览器中打开http://localhost:8000

大多数 JavaScript 和 HTML IDE 也有一些内置的服务功能。

关于javascript - Window.location 不工作我已经尝试了一切,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34829957/

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