[Bootstrap] 뒤로가기 클릭시 모달창 닫기

페이지 정보

yadolee 루루아빠 4,950 2017.07.18 23:32:26

본문

뒤로가기 클릭시 모달창 닫기

<script type="text/javascript">
$(".modal").on("shown.bs.modal", function()  {
    var urlReplace = "#" + $(this).attr('id');
    history.pushState(null, null, urlReplace);
});

    $(window).on('popstate', function() {
    $(".modal").modal('hide');
});
</script>
추천인
  • 추천해 주세요

댓글

첫 번째 댓글을 남겨 주세요