Closing Bootstrap modal onclick

后端 未结 4 2174
感动是毒
感动是毒 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 02:50

    You can hide the modal and popup the window to review the carts in validateShipping() function itself.

    function validateShipping(){
    ...
    ...
    $('#product-options').modal('hide');
    //pop the window to select items
    }
    

提交回复
热议问题