我正在尝试创建一个在某些情况下将打开的模式窗口。
我确实创建了一个模态窗口,该窗口在单击按钮时打开。我应该改变什么?

我的看法:

<button type="button" data-toggle="modal" data-target="#popupModal">open</button>
    <div id="popupModal"
         class="modal hide fade"
         tabindex="-1"
         role="dialog"
         aria-labelledby="popupModalLabel"
         aria-hidden="true">


        ...some html
    </div>
</div>


我的控制器:

if (some conditions)
                    {
                        //here i want to open my modal window somehow
                    }

最佳答案

您可以在按钮click事件中检查这些条件,

$(button).click(function(){
     if (some conditions)
     {
         $("#popupModal").modal("show");
         //$("#popupModal").show();
     }
});


我为您创建了一个jsFiddle示例:JsFIddle

关于javascript - 在某些情况下,我应如何处理从 Controller 调用的模式窗口,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/44588242/

10-11 14:04