当我在 Mozilla 中按 ESC 时,工具提示会在文本框中消失
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我想禁用转义键应该在这种情况下起作用
编辑:转义的键码应该是 27,您也可以尝试使用 keyup 而不是 keydown
I guess disabling escape key should work in this case
edit: keycode for escape should be 27, and you can also try using keyup instead of keydown