在Firefox中,为body添加click事件,click时按下win键,alert语句不会执行,click时按下ctrl键则无问题。
document.body.addEventListener('click', function(event) { if (event.metaKey) { alert('meta');// windows中按下win键并单击body时,应该alert‘meta’ } if (event.ctrlKey) { alert('ctrl'); } }, false);
查阅MDN:https://developer.mozilla.org...
Firefox是支持metaKey的,那这里为什么不会触发呢,求解惑。
动漫人物
相关分类