在js里用window.location.href("xxxxx");来实现页面直接跳转功能。如:
window.location.href("/index.html");
IE内核浏览器木有问题。火狐、谷歌不支持。
据说 window.location.href有 ="xxxxx" 和("xxxxx")两种用法,支持的浏览器各不相同,所以这个方法很不通用。
查到这个方法可以解决:top.window.location ="index.html";
此外,window.location.href = window.location.href; 和 window.location.Reload(); 和都是刷新当前页面。区别在于是否有提交数据。当有提交数据时,window.location.Reload()会提示是否重新提交。