我将这段代码嵌入了我的 js 文件以关闭 win 键。此代码:
jQuery(document).keydown(function(e){
alert(e.keyCode); // replace "37" below with the windows key code
if (e.keyCode == 37) {
alert( "windows key pressed" );
return false;
}
});
工作很好。但我只想工作 1 div。我怎样才能做到这一点?