prevent bootstrap modal window from closing on form submission

后端 未结 7 1828
轻奢々
轻奢々 2021-02-05 06:47

Hi I\'m using Bootstrap for the first time and I can\'t get my modal form to stay open on clicking the submit button. I\'ve searched SO but all related questions deal with slig

7条回答
  •  清歌不尽
    2021-02-05 07:12

    look at => http://getbootstrap.com/2.3.2/javascript.html#modals

    use

    data-backdrop="static"
    

    or

    $("#yourModal").modal({"backdrop": "static"});
    

    Edit1 :

    on your link opening your modal ==>

    yourModal
    

    Edit2 :

    http://jsfiddle.net/BVmUL/39/

提交回复
热议问题