Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 jquery 线索提示,它工作得很好。我将它设置为粘性模式,因此我可以将鼠标悬停在工具提示上并单击链接等。
我有一个差距是它有点烦人,必须用鼠标点击右边的uppoeer 来关闭线索提示。有没有办法简单地按下转义键并关闭提示?我希望这种行为会开箱即用,但我看不到。
你可以尝试这样的事情。
$(document).keydown(function(e) { // ESCAPE key pressed if (e.keyCode == 27) { //Code here to close the tooltip $(document).trigger('hideCluetip'); } });