js跳转到指定页面4种方法和延时跳转

2019独角兽企业重金招聘Python工程师标准>>> hot3.png

要实现从一个页面A跳到另一个页面B,js实现就在A的js代码加跳转代码

JS跳转大概有以下几种方式:

第一种:(跳转到b.html)

window.location.href="b.html";

第二种:(返回上一页面)

window.history.back(-1);

第三种:

window.navigate("b.html");

第四种:

self.location=’b.html’;

第五种:

top.location=’b.html’;


js实现网页多少秒后自动跳转到指定网址
setTimeout(function(){
location.href="你的网址路径";

},5000);
5000即5秒


转载于:https://my.oschina.net/zhangyafei/blog/609019

你可能感兴趣的:(js跳转到指定页面4种方法和延时跳转)