video.js 使用 class 而不是 URL 结束了活动

video.js ended event using class instead of URL

我正在使用 video.js,我想使用 class(即 class="next-project" href="")重定向到 URL 在视频末尾而不是 this 解决方案所指示的实际 URL - 有什么想法吗?

改用 jQuery,因为您的网站上有它。假设您想使用视频结束时第一个锚元素的 href 属性重定向用户,我推荐以下方法:

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