如何显示bootstrap的工具提示

时间:2012-11-21 07:14:29

标签: twitter-bootstrap

        $(function(){ 
        $("#plus").tooltip({
            placement: 'top',
            trigger: 'hover',
            title : 'test'
        })
        $('#minus').tooltip({
            placement: 'top',
            trigger: 'hover',
            title : 'test'
        })
    });    


<button class="btn" type="button" id="plus"><i class="icon-plus-sign"></i></button
<button class="btn" type="button" id="minus"><i class="icon-minus-sign"></i></button>

我写的你的代码没有显示你的弹出窗口。

有人遇到过这个问题吗?

1 个答案:

答案 0 :(得分:0)

好像你已经正确完成了。第一个按钮结束标记虽然没有关闭。

</button

其他引导功能是否正常工作(包括bootstrap js文件等)?

我在这里测试了你的例子:JSFiddle(切换位置到底部)