检查iPad上的视频结束

时间:2014-08-26 15:32:10

标签: javascript ipad html5-video

我似乎无法在iPad(Safari)上的视频上听取...我想要删除按下播放按钮时我能够添加的课程,但我可以'似乎在视频结束时跟踪(适用于包括iphone在内的其他任何地方,只需要用于iPad / Safari)

链接到这里:http://www.artandseek.net/meyerson/tour/

此处的代码段

$(".playBtn").click(function(){
            var thisVideo = $(this).prevAll(".img-wrap").children(".togglePlay").get(0);


                thisVideo.onended = function(e) {
                        $(this).fadeOut().parent(".img-wrap").removeClass("playing");
                        $(this).parent().next("h2").fadeIn();
                        classie.remove( thisVideo, 'tabletActive');
                        }; ...

1 个答案:

答案 0 :(得分:0)

我能在这里找到答案: Bind Play/Pause/Ended functions to HTML5 video using jQuery

使用此:$(thisVideo).bind('ended', function () { console.log('working'); });