gpt4 book ai didi

带有链接的 jquery UI 工具提示 html

转载 作者:行者123 更新时间:2023-12-03 22:02:57 24 4
gpt4 key购买 nike

我想使用 jquery UI 工具提示。

在工具提示中,我希望有一个 html 格式的链接。

我看到这篇文章 ( Jquery UI tooltip does not support html content ),其中介绍了如何在工具提示内使用 html。

但是当我想在工具提示内添加链接时出现问题。

当我用光标输入单击链接的工具提示时,工具提示消失了(因为我将鼠标从分配给工具提示的元素移开。

我能做什么?

谢谢。

更新:

  $(function () {
$(document).tooltip({
content: function () {
return $(this).prop('title');
}
});
});

示例:http://jsfiddle.net/jLkcs/

最佳答案

由于 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();
})
});
}
});
});

演示:http://jsfiddle.net/IrvinDominin/jLkcs/5/

关于带有链接的 jquery UI 工具提示 html,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18231315/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com