Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在为科学博览会创建一个网页,以测试学生检测网络钓鱼网站的能力。该网站将更改为类似于 Windows 登录屏幕。我需要执行此操作的功能以在F11按下时激活。我该怎么做?
我建议不要使用 F11 键,因为这是在某些当前浏览器中启动“全屏”模式的常用快捷方式。因此,浏览器开发人员可能希望保护浏览器免受页面作者覆盖此快捷方式的影响。
$(document).keyup(function(e){ if(e.keyCode===122){ function1(); function2(); } }