我试图找到一种方法来检查窗口中是否已存在eventListener
,我已尝试使用此similar question以及更多其他解决方案中的解决方案,但对我来说没有任何作用。
以下是代码:
checkEvent=function()
{
if('keydown' in window)
console.log('exist');
else
console.log('not_exist');
}
这是我在我的页面上添加的eventListener Load
document.addEventListener("keydown", PayKeydownHandler);
但是第一个代码返回'not_exist'
作为结果
PS:函数checkEvent()
,我在ENTER keydown的onclick中调用它。
请帮忙吗?提前谢谢。