Tag: 暂停

当模态关闭时停止video

我正试图在关闭时停止播放模态中的video。 问题是我的模态脚本将模态从其原始位置移动到结束标记之前。 因此,在模态窗口上方停止video脚本时,video在模态关闭后永远不会停止播放。 这是我使用的模态脚本https://github.com/VodkaBears/Remodal JQUERY停止video var stopVideo = function ( element ) { var video = element.querySelector( ‘video’ ); // script stops here with this error message: (index):684 Uncaught TypeError: Cannot read property ‘querySelector’ of null. if ( video !== null ) { video.stop(); } }; $(‘.remodal-close’).click(function(){ var id = this.id || this.getAttribute( ‘data-remodal-id’ ); […]