当我在 Mozilla 中按 ESC 时,工具提示会在文本框中消失

发布于 2024-11-24 07:59:43 字数 155 浏览 1 评论 0原文

我在 jquery 中使用名为 vtip 的工具提示工具。 当我将鼠标悬停在文本区域上时,会出现一个工具提示,但每当我在文本区域内单击转义 (ESC) 时,下次我将鼠标悬停在文本区域上时,工具提示就会消失。

这只发生在 Firefox 中,在 IE 和 Chrome 中运行良好。

I'm using a tooltip tool called vtip in jquery.
When I hover over the textarea a tooltip appears but whenever I click escape (ESC) inside of the textarea, the next time I hover over the textarea, the tooltip disappears.

This only occurs in Firefox and works fine in IE and Chrome.

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

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

发布评论

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

评论(1

左耳近心 2024-12-01 07:59:43

我想禁用转义键应该在这种情况下起作用

$(document).keydown(function (e) {
    if(e.which == 27) {
        return false;
    }
});

编辑:转义的键码应该是 27,您也可以尝试使用 keyup 而不是 keydown

I guess disabling escape key should work in this case

$(document).keydown(function (e) {
    if(e.which == 27) {
        return false;
    }
});

edit: keycode for escape should be 27, and you can also try using keyup instead of keydown

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