我正在使用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>