jQuery 工具工具提示在 hide() 之后的第一次尝试中不会出现

发布于 2024-11-13 03:35:47 字数 694 浏览 3 评论 0原文

我已将 tooltip 用于


几秒钟后它将hide()
如果我将鼠标悬停在它后面的触发器上。
第一次不会出现。
只有当我第二次将鼠标移到它上面时它才会出现。
我使用 onShow 事件进行绑定并使用 window.setTimeOut

是工具提示中的问题还是 jQuery 中的问题?

像这样的东西:

$(document).ready(function() {
    x = $("button").tooltip({
        api: true,
        position: "center right",
        onShow: function() {
            var hid = function() {
                x.getTip().hide();
            };
            window.setTimeout(hid, 2000);
        }});
    x.show();
    });

演示

I've used tooltip for a <div>.
It will hide() after couple of seconds.
If I'll mouse over it's trigger after it.
For the first time it will not appear.
Only after I move the mouse over it the second time it will appear.
I used onShow event for binding and used window.setTimeOut.

Is it a problem in the tooltip or in jQuery?

Something like this:

$(document).ready(function() {
    x = $("button").tooltip({
        api: true,
        position: "center right",
        onShow: function() {
            var hid = function() {
                x.getTip().hide();
            };
            window.setTimeout(hid, 2000);
        }});
    x.show();
    });

demo

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

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

发布评论

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

评论(1

一身骄傲 2024-11-20 03:35:47

好吧,我已经修好了:
在这里回答:

$(document).ready(function() {
    x = $("button").tooltip({
        api: true,
        **effect:"fade"**,
        position: "center right",
        onShow: function() {
            var hid = function() {
                **x.hide();**
            };
            window.setTimeout(hid, 2000);
        }});
    x.show();
    });

http://jsfiddle.net/vKa5Z/5/

well, I've fixed it:
answer here:

$(document).ready(function() {
    x = $("button").tooltip({
        api: true,
        **effect:"fade"**,
        position: "center right",
        onShow: function() {
            var hid = function() {
                **x.hide();**
            };
            window.setTimeout(hid, 2000);
        }});
    x.show();
    });

http://jsfiddle.net/vKa5Z/5/

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