js 브라우저 후퇴 금지 단추 구현

2274 단어
      function BanBack(ele) {
        // 
        if (window.history && window.history.pushState) {
          $(window).on('popstate', function () {
            window.history.pushState('forward', null, '#');
            window.history.forward(1);
            if (ele) {// url 
              window.location.href = ele;
            }
          });
        }
        window.history.pushState('forward', null, '#'); // IE 
        window.history.forward(1);
      }

좋은 웹페이지 즐겨찾기