为什么 VideoJS 的 $(“#video”)[0].player.pause() 在 IE8 中会中断?

发布于 2024-12-02 13:48:51 字数 386 浏览 0 评论 0原文

我正在尝试使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

聆听风音 2024-12-09 13:48:51

IE8不支持html5视频标签

IE8 doesn't support html5 video tag

一指流沙 2024-12-09 13:48:51

你能给它一个类,而不是一个 ID 吗?

也许IE8不喜欢同一页面上有多个ID?

 $(".clip")[0].player.pause();

Can you give it a class, instead of an ID?

Maybe IE8 doesn't like the multiple ID's on the same page?

 $(".clip")[0].player.pause();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文