我有第一个 js 切换 div 帮助用户查看当前转换。我希望配合转义键来关闭弹出窗口。我知道按键代码(您可以在我的 fn 下方看到),但我的语法不是通过将它们捆绑在一起来实现的。非常欢迎任何帮助哦!
/* currency converter */
$('#link-currency').click(function (e) {
e.preventDefault();
$('#popup-currency').toggleClass('active');
});
$('body').keypress(function (e) {
alert(e.which);
if(e.which == 27){
// Close my modal window
}
});