像这样写:
<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')”这行代码的工作必须手动来做。
?
?