第一步:先引用jquery.min.js 这个文件 自己百度搜索一个下载接口
第二步:具体实现代码如下。
<script>$(document).ready(function(e) {
if (window.history && window.history.pushState) {
$(window).on('popstate', function () {
window.history.pushState('forward', null, '#');
window.history.forward(1);
alert('你确定要返回上一页') ;//这里是返回上一页之前的业务逻辑,可提示消息,可以是跳转的事件如window.location.href="http://www.baidu.com";
});
}
window.history.pushState('forward', null, '#'); //在IE中必须得有这两行
window.history.forward(1);
});
</script>
完结,可用于手机返回上一页刷新页面 也可用于pc端
网友评论