浏览器失败时如何暂停视频jreject插件测试?

时间:2013-09-13 00:45:45

标签: jquery jquery-plugins

我正在使用jReject jquery plugin。它会检测用户浏览器版本并显示更新链接。我想使用options.onFail()事件暂停视频,然后使用options.afterClose()事件重新启动它。到目前为止没有运气。

这是我的代码:

<video id="intro-video" autoplay="autoplay">  --sources in here-- </video>

<script type="text/javascript">
   (function ($) {
      options.onFail( function() {
         $('#intro-video').get(0).pause();   
      });
      options.afterClose( function () {
         $('#intro-video').get(0).play();
      });
   }(jQuery));
</script>

0 个答案:

没有答案