显示 Tipsy 工具提示而不悬停?

发布于 2024-10-04 03:31:08 字数 408 浏览 2 评论 0原文

全部。我制作了一份注册表格,但我想在我的工具提示 Tipsy 中显示错误消息。为此,我必须创建一些函数来显示工具提示,而无需将鼠标悬停在 ID 对象上。我尝试在默认选项中添加新参数,如下所示:

$.fn.tipsy.defaults = {
        delayIn: 0,
        without_hover: true... }

此函数中的第二个 $.fn.tipsy = function(options).... 我添加了一项检查 without_hover 是否为 true 以显示这样的醉酒:

if(options.without_hover == true) tipsy.show();

但它不起作用。我会对任何解决方案感到高兴。 谢谢。

all. I made one form for registration, but I want to show the messages for errors in my tooltip Tipsy. For this I must made some function to show the tooltip without hover on the ID object. I try to add new parameter in the default options like this:

$.fn.tipsy.defaults = {
        delayIn: 0,
        without_hover: true... }

And second in this function $.fn.tipsy = function(options)....
I add one check if the without_hover is true to show the tipsy like this:

if(options.without_hover == true) tipsy.show();

but it doesn't work. I will be happy on any solution.
Thank you.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

国际总奸 2024-10-11 03:31:08

如果您使用 tipsy 插件,手动显示工具提示的语法为:

$(selector ).醉酒(“显示”);

If you are using the tipsy plugin, the syntax for manually showing a tooltip is:

$(selector).tipsy("show");

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文