js 监听手机返回键
if(window.history && window.history.pushState) { $(window).on('popstate', function() { window.location = 'http://www.baidu.com' return false; }); window.history.pushState({ title: "title", url: "#" }, null, '#'); }
if(window.history && window.history.pushState) { $(window).on('popstate', function() { window.location = 'http://www.baidu.com' return false; }); window.history.pushState({ title: "title", url: "#" }, null, '#'); }