网站设置物理返回键

做网站经常不希望用户用物理返回键, 因为物理返回回去不会刷新,可能会造成某种BUG,记录一个设置物理返回去其他页面的方法:
参数是 其他页面的路径

function notback(str){
    if (window.history && window.history.pushState) {
        $(window).on('popstate', function() {
          var hashLocation = location.hash;
          var hashSplit = hashLocation.split("#!/");
          var hashName = hashSplit[1];
          if (hashName !== '') {
            var hash = window.location.hash;
            if (hash === '') {
              location.href=str;
            }
          }
        });
        window.history.pushState('forward', null, './#forward');
    }
}

你可能感兴趣的:(网站设置物理返回键)