1, 打开链接时 ,改为 replace的方式打开
// window.location.href = "" + url; window.location.replace("" + url);
js禁止原生手机返回键(物理返回键) $(document).ready(function() { if (window.history && window.history.pushState) { $(window).on('popstate', function () { window.history.pushState('forward', null, '#'); window.history.forward(1); }); } window.history.pushState('forward', null, '#'); //在IE中必须得有这两行 window.history.forward(1); });