get(0).play() -- Internet Explorer 错误

发布于 2024-11-28 19:04:57 字数 535 浏览 0 评论 0原文

我用它来显示一个视频模式,该模式在除 IE(特别是 IE8)之外的所有浏览器中都能正常工作:

//Video
$("#siteNav li.nav5 a").click(function(){
   $("#video").fadeIn();
   $(".commercial").get(0).play();
   return false;
});

$("#video").click(function(event){
   $(this).fadeOut();
   $(".commercial").get(0).pause();
   return false;
});

如果我单击此按钮,IE 会显示“页面错误”并重新加载。

如果我注释掉行 $(".commercial").get(0).play/pause(); ,则错误不会显示。

我有什么想法可以用 IE 友好的替代方案来写这个吗?

我还应该提到,我在兼容浏览器中使用 HTML5 视频,在 IE 中使用 Flowplayer/Flash。

I have this to show a video modal which works well in all browsers except IE (specifically IE8):

//Video
$("#siteNav li.nav5 a").click(function(){
   $("#video").fadeIn();
   $(".commercial").get(0).play();
   return false;
});

$("#video").click(function(event){
   $(this).fadeOut();
   $(".commercial").get(0).pause();
   return false;
});

If I click this, IE says "Error on page" and reloads.

If I comment out the line $(".commercial").get(0).play/pause(); the error doesn't show.

Any ideas how I can write this with an IE-friendly alternative?

I should also mention I use HTML5 video for compatible browsers, and Flowplayer/Flash for IE.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

少女的英雄梦 2024-12-05 19:04:57

如果您使用 IE 浏览器的 flowplayer,请尝试以下代码。

//Video
$("#siteNav li.nav5 a").click(function(){
   $("#video").fadeIn();
   if($.browser.msie)
     $f($(".commercial").get(0)).play();
   else
     $(".commercial").get(0).play(); 
   return false;
});

$("#video").click(function(event){
   $(this).fadeOut();
   if($.browser.msie)
     $f($(".commercial").get(0)).pause();
   else
     $(".commercial").get(0).pause(); 
   return false;
});

If you are using flowplayer for IE browser then try below code.

//Video
$("#siteNav li.nav5 a").click(function(){
   $("#video").fadeIn();
   if($.browser.msie)
     $f($(".commercial").get(0)).play();
   else
     $(".commercial").get(0).play(); 
   return false;
});

$("#video").click(function(event){
   $(this).fadeOut();
   if($.browser.msie)
     $f($(".commercial").get(0)).pause();
   else
     $(".commercial").get(0).pause(); 
   return false;
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文