Bootstrap tooltips not working

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

I\'m going mad here.

I\'ve got the following HTML:



        
25条回答
  •  感情败类
    2020-11-28 18:25

    After experiencing the same problem, I found this solution worked without having to add additional tag attributes outside of the Bootstrap required attributes.

    HTML

    Hyperlink Text
    

    JQuery

    $(document).ready(function() {
        $("body").tooltip({ selector: '[data-toggle=tooltip]' });
    });
    

    Hope this helps!

提交回复
热议问题