Avoid modal dismiss on enter keypress

后端 未结 7 1808
暗喜
暗喜 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:35

    I had same problem, and i solved it with

    <form onsubmit="return false;">
    

    but there is one more solution, you can add dummy invisible input, so your form would look like this:

    <form role="form" method="post" action="submitform.php">
        <input type="text" id="name" name="name" >
        <input type="text" style="display: none;">
    </form>
    
    0 讨论(0)
提交回复
热议问题