video.js使用类而不是URL

时间:2015-08-11 17:28:45

标签: javascript html5 api video.js

我正在使用video.js,我想使用一个类(即class =" next-project" href ="")重定向到一个URL在视频结尾而不是实际网址,因为this解决方案表明 - 任何想法?

1 个答案:

答案 0 :(得分:0)

使用jQuery代替,因为您的网站上有。假设您要使用视频结束时第一个锚元素的href属性重定向用户,我建议采用以下方法:

$(function() {
    var video = $("video");
    video.on("ended", function() {
        var href = $(".next-project").attr("href");
        window.location = href;
    });
});