鼠标悬停时显示 qTip

发布于 2024-10-22 02:46:14 字数 228 浏览 2 评论 0原文

我正在尝试使用 jQuery 验证表单并使用 qTip 显示错误消息。但我想在鼠标悬停时显示错误消息,截至目前,当我提交表单时,错误消息将出现在文本字段旁边。

当我将鼠标悬停在文本字段上时如何显示错误消息。

演示 - http://jsfiddle.net/UcaZT/

rvi。

I am trying to validate a form, using jQuery validate and show errors messages using qTip. But i want to show error message onMouse Over, as of now when i submit the form the error messages are coming next the text field.

How do i show the error message when i mouseover the textfield.

Demo - http://jsfiddle.net/UcaZT/

rvi.

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

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

发布评论

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

评论(1

渔村楼浪 2024-10-29 02:46:14

显示 qtip 工具提示的代码如下所示:

// Apply the tooltip only if it isn't valid
$(element).filter(':not(.valid)').qtip({
    overwrite: false,
    content: error,
    position: position,
    show: {
        event: false,
        ready: true
    },
    hide: false,
    style: {
        classes: 'ui-tooltip-red' // Make it red... the classic error colour!
    }
});

show: {
    event: false,
    ready: true
},

告诉 qTip 立即打开工具提示。

你想要这样的东西:

    show: {
        event: 'mouseover'
    },
    hide: {
        event: 'mouseout'
    },

Here 是更新的 jsFiddle

The code showing the qtip tooltips looks like this:

// Apply the tooltip only if it isn't valid
$(element).filter(':not(.valid)').qtip({
    overwrite: false,
    content: error,
    position: position,
    show: {
        event: false,
        ready: true
    },
    hide: false,
    style: {
        classes: 'ui-tooltip-red' // Make it red... the classic error colour!
    }
});

This

show: {
    event: false,
    ready: true
},

tells qTip to open the tooltips immediately.

You want something like this:

    show: {
        event: 'mouseover'
    },
    hide: {
        event: 'mouseout'
    },

Here is an updated jsFiddle

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