뒤로가기 막기

혜진 조·2023년 6월 2일
0

리액트

목록 보기
27/31
post-custom-banner
 
  const preventGoBack = () => {
    history.pushState(null, "", location.href);
    setOpenConfirmPopup(true); //커스텀 모달 팝업창
  };
  
  useEffect(() => {
    (() => {
      history.pushState(null, "", location.href);
      window.addEventListener("popstate", preventGoBack);
    })();

    return () => {
      window.removeEventListener("popstate", preventGoBack);
    };
  }, []);
profile
나를 믿고 한 걸음 한 걸음 내딛기! 🍏

0개의 댓글