我在本地创建了2个静态html页面,demo1.html
和demo2.html
。
我需要从一个页面重定向到另一个页面。最初我打开了我的demo1.html
页面(网址是文件:/// D:/app/demo1.html)。
现在点击此页面中的按钮,我想重定向到demo2.html
我试过了:
$( "#submit" ).click(function() {
window.location.href = "/demo2.html";
});
但它不起作用。我需要做些什么改变才能发挥作用?
答案 0 :(得分:3)
在新网址的开头删除/。
如果您是按照您所说的文件加载的,那么写"/demo2.html"
将映射到file:///d:/demo2.html
如果你写
$( "#submit" ).click(function() {
window.location.href = "demo2.html";
});
这将映射到您启动应用的同一文件夹,即file:///D:/app/demo2.html
答案 1 :(得分:0)
试试这个
$('#submit').click(function() {
window.location = '/demo2.html';
};