我想使用
jquery UI工具提示.
我看到这篇文章(Jquery UI tooltip does not support html content)说如何在工具提示中使用html.
当我用光标进入点击链接的工具提示时,工具提示消失(因为我从分配给工具提示的元素中mouSEOut).
我能做什么?
谢谢.
更新:
$(function () { $(document).tooltip({ content: function () { return $(this).prop('title'); } });
});
解决方法
由于jQuery UI的本质,工具提示是不可能开箱即用的.
您可以添加一些技巧(在jQuery论坛上发现,但是链接丢失…)让工具提示延迟关闭,并让您有时间点击链接.
二手api文档:http://api.jqueryui.com/tooltip/
码:
$(function () { $(document).tooltip({ content: function () { return $(this).prop('title'); },show: null,close: function (event,ui) { ui.tooltip.hover( function () { $(this).stop(true).fadeTo(400,1); },function () { $(this).fadeOut("400",function () { $(this).remove(); }) }); } }); });