Window.location不工作我已经尝试了eveything

时间:2016-01-16 17:33:42

标签: javascript window.location

/*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。任何人都知道它为什么不起作用?请帮忙!我已经好几个小时了。

1 个答案:

答案 0 :(得分:5)

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

我建议您抓住一些开发网络服务器,并通过它来提供您的文件。有关nodejs的详细信息或连接,请参阅python的以下内容:

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

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