播放html5播放器

发布于 2025-01-06 02:13:16 字数 918 浏览 0 评论 0原文

下面的代码可以工作,但它会同时播放 DOM 中 projekktor 视频播放器的所有实例。如何修改代码以仅在与我单击的 .startb 相同的父 div 中播放视频?

html

<div class="videoContainer">
        <div class="playerHolder">
            <div class="videoPlayer"><video class="projekktor" poster="poster.jpg" title="" width="640" height="385" controls>
            <source src="video.mp4" type="video/mp4" />
            <source src="video.webm" type="video/webm" />
            </video></div>
            <div class="startb"><img src="dbs/images/start.png"/></div>
            <div class="postImage"><img src="006_CCC_Magdelena_poster.jpg" title="" width="640" height="385" /></div>
        </div>
</div>

js

$('.startb').click(function() {
    projekktor('*').each(function() {
        this.setPlay();
    });
});   

The code below works but it plays ALL instances of the projekktor video player in the DOM simultaneously. How would I revise the code to only play the video within the same parent div as the .startb i click?

html

<div class="videoContainer">
        <div class="playerHolder">
            <div class="videoPlayer"><video class="projekktor" poster="poster.jpg" title="" width="640" height="385" controls>
            <source src="video.mp4" type="video/mp4" />
            <source src="video.webm" type="video/webm" />
            </video></div>
            <div class="startb"><img src="dbs/images/start.png"/></div>
            <div class="postImage"><img src="006_CCC_Magdelena_poster.jpg" title="" width="640" height="385" /></div>
        </div>
</div>

js

$('.startb').click(function() {
    projekktor('*').each(function() {
        this.setPlay();
    });
});   

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

飘过的浮云 2025-01-13 02:13:16

试试这个:

$('.startb').click(function() {
     $(this).parent('div').find('.projekktor').setPlay();
});   

Try this:

$('.startb').click(function() {
     $(this).parent('div').find('.projekktor').setPlay();
});   
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文