我正在使用jquery cluetip,效果很好。我有它在粘性模式,所以我可以将鼠标悬停在工具提示上,然后点击链接等。
我所拥有的一个差距就是让鼠标点击右边的关闭cluetip有点烦人。无论如何只需按下退出键并关闭cluetip?我希望这种行为是开箱即用的,但我没有看到它。
答案 0 :(得分:2)
你可以尝试这样的事情。
$(document).keydown(function(e) {
// ESCAPE key pressed
if (e.keyCode == 27) {
//Code here to close the tooltip
$(document).trigger('hideCluetip');
}
});