我使用了一个通过单击按钮打开的引导模式对话框.
当我第一次点击按钮时,模态打开;通过第二次单击,模态对话框不显示,此错误显示在firebug consol中:
TypeError: $(...).modal is not a function
$(".bs-modal-dialog").modal();
我该怎么解决?谢谢…
这些是我的代码:
最佳答案
你不需要任何JavaScript来做这件事,Bootstrap已经附带了html attribute for that.
所有你需要做的就包括data-toggle =“modal”data-target =“#myModal”,它应该触发你的模态.
原文链接:https://www.f2er.com/jquery/428291.html