Bootstrap tooltips not working

前端 未结 25 1774
孤城傲影
孤城傲影 2020-11-28 17:46

I\'m going mad here.

I\'ve got the following HTML:



        
25条回答
  •  臣服心动
    2020-11-28 18:27

    Put your code inside document ready

    $(document).ready(function () {
        if ($("[rel=tooltip]").length) {
            $("[rel=tooltip]").tooltip();
        }
    });
    

    In my case I was also missing the tooltip css classes on http://twitter.github.com/bootstrap/assets/css/bootstrap.css so son't forget that.

提交回复
热议问题