js监听手机返回键,回到指定界面
可以再了解下pajax中修改浏览器地址栏!
$(document).ready(function(){ pushHistory("/index/store/index?keywords={$keywords}","","主页"); }); /*-----监听返回事件-----*/ function pushHistory(returnUrl,currentUrl,currentTitle) { window.addEventListener("popstate", function(e) { window.location.href=returnUrl; }, false); var state = { title: currentTitle, url: currentUrl }; window.history.pushState(state, currentTitle, currentUrl); }
转 : https://blog.csdn.net/weixin_42331327/article/details/82347985