javascript-哪个版本的IE不会将事件作为参数传递给侦听器?
作者:互联网
由于IE的某些旧版本没有将事件作为事件侦听器的参数提供,因此我们习惯了(event || window.event).
为了确定在现代图书馆中使用它是否仍然有意义,我尝试查看所关注的版本,但找不到此信息.
那么,没有提供事件作为参数的IE最新版本是什么?
解决方法:
Internet Explorer provides a global object window.event, which
references the last event. And before IE9 there are no arguments in
the handler.
标签:event-handling,javascript-events,internet-explorer,html,javascript 来源: https://codeday.me/bug/20191121/2055813.html