Window.location 不工作我已经尝试了一切
Window.location not working I have tried eveything
/*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:
,请参见以下内容
- 导航到您的网络应用程序的根目录
- 运行
python -m http.server
python3,或 python -m SimpleHTTPServer
python2
- 在浏览器中打开
http://localhost:8000
大多数 JavaScript 和 HTML IDE-s 也有一些内置服务功能。
/*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:
,请参见以下内容- 导航到您的网络应用程序的根目录
- 运行
python -m http.server
python3,或python -m SimpleHTTPServer
python2 - 在浏览器中打开
http://localhost:8000
大多数 JavaScript 和 HTML IDE-s 也有一些内置服务功能。