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.
我正在为 Internet Explorer 开发一个插件(这比我最初认为的要困难得多),我找不到窗口焦点的事件。我有一个更改选项卡的事件,但如果整个窗口第一次获得焦点则没有
有人有这方面的经验吗?那里没有很多关于 IE 插件的信息。
$(window).on('focus', function(e)... $(window).on('blur', function(e)...
通常是您想要在普通浏览器(Chrome、Firefox、Safari)中监听的事件,但是这些事件在 IE 中的触发时间非常奇怪。
在 IE 8、9、10、11 中有一个奇怪的状态,当您专注于窗口时,您可以进入“焦点”/“模糊”同时触发的状态。
(免责声明:为 IE 开发很糟糕)