标签: javascript-events
按下Esc键时如何制作事件,请给我一个警告()示例;谢谢......
答案 0 :(得分:0)
document.body.onkeyup = function(e){ if(e.keyCode == 27){ alert('Yay'); } }