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.
JavaScript プログラムのコンテキスト メニューが開いているかどうかを知る必要があります。 コンテキスト メニューが開いていることを確認した場合にのみ、関数を実行する必要があります。
私たちを手伝ってくれますか? よろしく。
document.addEventListener('contextmenu', function() { console.log('ya right'); });
上記のスニペットya rightは、ユーザーが右クリックしたときにログに記録します。
ya right