How to disable Escape Key for Twitter Bootstrap Modals?

后端 未结 7 924
执念已碎
执念已碎 2020-12-13 17:44

In a shown modal there is a form. If I focus on an input field (any field for that matter) and press ESC key, that modal is hidden. However, if I don\'t focus on a form fiel

相关标签:
7条回答
  • 2020-12-13 18:16
    
    > keyboard: true
    
     Closes the modal when escape key is pressed.
    
    > keyboard: false
    
     Prevent closing the modal when escape key is pressed
    

    Demo JQuery Code

    $('#myModal').modal({show: true, keyboard: false});

    0 讨论(0)
提交回复
热议问题