Twitter引导工具
提示触发器默认是悬停.
我可以添加data-trigger =“focus”以使工具提示显示在焦点上,但我如何同时进行悬停和聚焦?
@Adrian的
解决方案在Bootstrap 3上不起作用.使用以下
内容:
$('[rel=tooltip]').tooltip();
$(document).on('hover','[rel=tooltip]',function () { $(this).tooltip('show'); });
$(document).on('focus',function () { $(this).tooltip('show'); });
原文链接:https://www.f2er.com/js/155719.html