js实现跳转页面
- 通过a标签跳转
<a href="http://www.baidu.com" >跳转</a> // 当前页面跳转,不会打开新页面
<a href="http://www.baidu.com" target="_blank" >跳转</a> // 会在浏览器中重新打开一个页面跳转
- location对象的href属性
window.location.href="http://www.baidu.com" // 会在当前窗口跳转新页面
- 通过open方法
window.open("http://www.baidu.com"); // 会打开一个新窗口,跳转页面
强制刷新页面
window.location.reload();
location.reload();
网友评论