Bootstrap 3 Tooltip over Glyphicon

前端 未结 5 1326
梦如初夏
梦如初夏 2020-12-25 12:00

Not sure if this even possible, I am trying to invoke a tooltip over a glyphicon inside an input group, my code (which does not work) is;

5条回答
  •  太阳男子
    2020-12-25 13:04

    A Bootstrap newbie here...

    To use the Tooltip plugin with the glyph-icon, I've found success wrapping the glyph-icon span tag with an anchor tag having no href:

    
      
    
    

    Also, be sure to initialize the tooltips for the links with tooltips:

    $("a.tooltipLink").tooltip();
    

    I tested this with Bootstrap 3.03, jQuery 1.10.2 + Firefox 26, Chrome 32.0.1700, and IE 11.0.9600. So far, no hiccups.

提交回复
热议问题