jquery – 为什么不在第二次打开bootstrap模式对话框?

前端之家收集整理的这篇文章主要介绍了jquery – 为什么不在第二次打开bootstrap模式对话框?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我使用了一个通过单击按钮打开的引导模式对话框.
 当我第一次点击按钮时,模态打开;通过第二次单击,模态对话框不显示,此错误显示在firebug consol中:

TypeError: $(...).modal is not a function
$(".bs-modal-dialog").modal();

我该怎么解决?谢谢…

这些是我的代码

                    
最佳答案
你不需要任何JavaScript来做这件事,Bootstrap已经附带了html attribute for that.

所有你需要做的就包括data-toggle =“modal”data-target =“#myModal”,它应该触发你的模态.

bootply here

原文链接:https://www.f2er.com/jquery/428291.html

猜你在找的jQuery相关文章