VideoJS error Uncaught TypeError: Cannot read property 'nodeName' of null

VideoJS error Uncaught TypeError: Cannot read property 'nodeName' of null

我正在弹出窗口或某些 window 中通过 VideoJS 播放视频流。 视频播放非常好。 但是在播放时如果我关闭模式或 window 我在控制台上收到此错误。

video-js.js:2568 Uncaught TypeError: Cannot read property 'nodeName' of null
    at validateTarget (video-js.js:2568)
    at normalizeListenArgs (video-js.js:2647)
    at Html5.one (video-js.js:2787)
    at Player.userActive (video-js.js:27096)
    at Player.<anonymous> (video-js.js:27206)
    at video-js.js:4640

任何知道删除这个的解决方案的人请帮忙。

此错误与videojs中的dispose()函数有关,因为您在配置videojs播放器时没有指定element/playerid:

for ex : videoJSPlayer = element

 if (videojs.getPlayer("videoJSPlayer")) {
     videojs("videoJSPlayer").dispose();
   }