JS_0034:去掉微信 底部 历史记录 返回状态栏 白底

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);

   });
琥珀君的博客
原文地址:https://www.cnblogs.com/eliteboy/p/13555208.html