我正在尝试使用twitter bootstrap example中的弹出框,所以当你点击一个按钮时它会出现,当你点击它时它会消失。
我在 application.js
//= require bootstrap-tooltip.js
//= require bootstrap-popover.js
$(function () {
$('.popover-test').popover();
});
在我看来 _fof.html.erb
<button class="popover-test" id="button1" data-content="Popover Content">
<%= 'ciao' %>
</button>
但是popover只有在鼠标悬停时才会出现,当我继续前进时它就会消失。我必须在js中实现函数on_click吗?