Avoid modal dismiss on enter keypress

后端 未结 7 1827
暗喜
暗喜 2020-12-02 12:30

I have set up a bootstrap modal with a form inside it, I just noticed that when I press the Enter key, the modal gets dismissed. Is there a way not to dismiss it when pressi

7条回答
  •  隐瞒了意图╮
    2020-12-02 13:11

    Just add the type="button" attribute to the button element, some browsers interpret the type as submit by default.

    https://developer.mozilla.org/en-US/docs/Web/HTML/Element/button#Attributes

    This applies for all the buttons you have in the modal.

    
    

提交回复
热议问题