当前位置: 代码迷 >> Web前端 >> bootstrap tooltip不显示解决方法
  详细解决方案

bootstrap tooltip不显示解决方法

热度:1680   发布时间:2013-09-27 14:23:43.0
bootstrap tooltip不显示解决办法

像这样写:

<a href='#' onMouseOver="$(this).tooltip('show')" id='xxxx_6449' data-toggle="tooltip" title="这是提示" data-placement="top">悬停我</a>

?就可以出来了。

官方文档中有这么一句:For performance reasons, the tooltip and popover data-apis are opt in, meaning you must initialize them yourself.

也就是说,处于性能的考虑,你必须手动初始化他们。也就是“$(this).tooltip('show')”这行代码的工作必须手动来做。

?

?

  相关解决方案