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のヒントを使用していますが、うまく機能します。ツールチップにカーソルを合わせてリンクをクリックできるように、スティッキー モードにしています。
私が持っている 1 つのギャップは、手がかりのヒントを閉じるために右の上をマウスでクリックしなければならないのが少し面倒だということです。単にエスケープキーを押して手がかりのヒントを閉じる方法はありますか? 私はその動作が箱から出てくることを期待していますが、私はそれを見ません。
あなたはこのようなことを試すことができます。
$(document).keydown(function(e) { // ESCAPE key pressed if (e.keyCode == 27) { //Code here to close the tooltip $(document).trigger('hideCluetip'); } });