我可以添加data-trigger =“focus”以使工具提示显示在焦点上,但我如何同时进行悬停和聚焦?
$('[rel=tooltip]').tooltip(); $(document).on('hover','[rel=tooltip]',function () { $(this).tooltip('show'); }); $(document).on('focus',function () { $(this).tooltip('show'); });