为什么 VideoJS 的 $(“#video”)[0].player.pause() 在 IE8 中会中断?
我正在尝试使用 VideoJS 插件和以下命令控制 HTML5 视频的播放和暂停功能:
$("#clip")[0].player.pause();
一切正常在 Safari、Chrome 和 Firefox 中,但在 IE8 中不行。
调试器说:
this.player 为 null 或不是对象。
此命令也适用于其他浏览器,但不适用于 IE8:
$("#clip")[0].pause();
有什么想法吗?
I'm trying to control the play and pause function an HTML5 video using the VideoJS plugin and the following command:
$("#clip")[0].player.pause();
Everything works fine in Safari, Chrome and Firefox, but not in IE8.
The debugger says:
this.player is null or not an object.
This command also works in the other browsers but not in IE8:
$("#clip")[0].pause();
Any thoughts?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
IE8不支持html5视频标签
IE8 doesn't support html5 video tag
你能给它一个类,而不是一个 ID 吗?
也许IE8不喜欢同一页面上有多个ID?
Can you give it a class, instead of an ID?
Maybe IE8 doesn't like the multiple ID's on the same page?