标签: bootstrap-modal
我的项目中有多个模态,一些模态将通过javascript打开。我需要如果任何模态处于打开状态,则不会打开其他模态。我们怎么做到这一点?
答案 0 :(得分:1)
如果您要通过javascript / jquery启动所有模态,则可以使用
if ($('.modal .in').length() > 0) { //at least one open modal detected return; else { //show modal }