Closing Bootstrap modal onclick

后端 未结 4 2111
感动是毒
感动是毒 2021-02-08 02:18

I am using a Bootstrap modal for users to choose product options before adding an item to their cart. I\'ve used them before in this scenario with no issues but this one isn\'t

4条回答
  •  花落未央
    2021-02-08 03:04

    Close the modal box using javascript

    $('#product-options').modal('hide');
    

    Open the modal box using javascript

    $('#product-options').modal('show');
    

    Toggle the modal box using javascript

    $('#myModal').modal('toggle');
    

    Means close the modal if it's open and vice versa.

提交回复
热议问题