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.
私の問題は次のようなものです: ESC-problem
しかし、違いは、子ウィンドウのコンテンツにアクセスできないことです(その中にスクリプトを入れることはできません)。
esc子ウィンドウの親ウィンドウでキーダウンを処理することは可能ですか。
esc
必要なのはこれだけです。
var myWindow = window.open(); myWindow.onkeydown = function(e){ if(e.keyCode === 27){ alert('esc key pressed'); } };