我无法让我的引导弹出框在我的 rails 应用程序中正常工作。我尝试了其他问题的解决方案,但没有成功。
目前在我的 HTML 中,我有:
<i class="icon-exclamation-sign" id="info" rel="popover" data-content="some info"></i>
和
<script>
$(function () {
$(".icon-exclamation-sign").popover();
});
</script>
我的 application.js 看起来像:
//= require jquery
//= require jquery_ujs
//= require bootstrap-datepicker
//= require_tree .
//= require bootstrap-tooltip
//= require bootstrap-popover
我的 application.css 看起来像:
/*
*= require_tree .
*= require bootstrap-datepicker
*/
我收到错误:加载页面时未捕获的类型错误:对象 [对象对象] 没有方法“弹出框”。我究竟做错了什么?
编辑:我也试过在我的 application.js 中使用 require bootstrap 而不是 tooltip 和 popover ,但没有运气。