一.定时跳转或者原地刷新
HTML5页面跳转的几种方法:
对于刷新当前页面js控制为:window.location.reload();//刷新当前页面,重新向服务器请求数据。
head标签内部的meta标签方式,定时刷新当前界面或刷新到另一个页面: <meta charset="utf-8" http-equiv="refresh" content="3;url=another.html"> // 3秒后跳转到another.html页面。
二.js手动替换跳转
HTML5页面跳转的几种方法
优点:灵活,可以结合更多的其他功能。
缺点:受到不同浏览器的影响。
上面的方法跳转会保留历史页面记录,通过返回键可以返回上一个界面,如果不想返回,直接替换页面的函数:
window.location.replace("hello.html"); //刷新当前页面,重新向服务器请求数据或: window.location.href="hello.html"。
三.历史记录跳转
1. window.history.go():
window.history.go(-1); // 返回上一页。
window.history.go(-2); // 返回上两页。
window.history.go("hello.html");// 跳转到hello.html。
2. window.history.back();等同于:window.history.go(-1);//返回上一页。
3. window.history.forward(); //返回下一页。
原文链接:https://blog.csdn.net/cordova/article/details/50853451