我需要显示工具提示时,一个div是悬停。通过单击工具提示,我需要执行一些操作。这类似于Gmail的撰写邮件。它显示了点击A图标的格式化选项。
发布于 2014-02-12 06:59:02
这是一个很好的解决方案:
http://abbysdoor.com/clickable-tooltips-in-jquery-ui/
从那个环节上拉小提琴
function setClickableTooltip(target, content){
$( target ).tooltip({
show: null, // show immediately
position: { my: "left bottom", at: "right center" },
content: content, //from params
hide: { effect: "" }, //fadeOut
close: function(event, ui){
ui.tooltip.hover(
function () {
$(this).stop(true).fadeTo(400, 1);
},
function () {
$(this).fadeOut("400", function(){
$(this).remove();
})
}
);
}
});}
https://stackoverflow.com/questions/21720332
复制相似问题