How to handle ESC keydown on javascript popup window

前端 未结 8 717
孤独总比滥情好
孤独总比滥情好 2020-12-07 19:03

I have a javascript window.open popup, and I want the popup to close itself when the user presses the ESC key. I can\'t figure out how to hook the keydown event (and on wha

8条回答
  •  臣服心动
    2020-12-07 19:12

    Try something like this:

    $(document).keydown(function(e) {
        // ESCAPE key pressed
        if (e.keyCode == 27) {
            window.close();
        }
    });
    

提交回复
热议问题