ABOUT ME

-

Today
-
Yesterday
-
Total
-
  • Bootstrap Modal의 backdrop 속성을 이용하여 모달 창을 유지하는 방법
    카테고리 없음 2023. 5. 12. 19:00

    Bootstrap Modal 을 사용중인데 Modal 바깥영역을 클릭했을시 창이 꺼지지 않게 해달라는 고객의 요청이 있었다. 이 문제를 해결하기 위해서는 Modal 창의 html에 data-backdrop 속성에 static 값을 추가하면 된다.

    <!-- 모달 버튼 -->
    <button type="button" class="btn btn-primary" data-toggle="modal" data-target="#exampleModal">
      Launch demo modal
    </button>
    
    <!-- 모달 -->
    <div class="modal" tabindex="-1" role="dialog" id="exampleModal" aria-labelledby="exampleModalLabel" aria-hidden="true" data-backdrop="static" data-keyboard="false">
      <div class="modal-dialog" role="document">
        <div class="modal-content">
          <div class="modal-header">
            <h5 class="modal-title" id="exampleModalLabel">Modal title</h5>
            <button type="button" class="close" data-dismiss="modal" aria-label="Close">
              <span aria-hidden="true">&times;</span>
            </button>
          </div>
          <div class="modal-body">
            Modal body text goes here.
          </div>
          <div class="modal-footer">
            <button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
            <button type="button" class="btn btn-primary">Save changes</button>
          </div>
        </div>
      </div>
    </div>

    id="exampleModal"인 태그에 data-backdrop="static"을 추가했더니 해결되었다.

Designed by Tistory.