无法使用jQuery play()播放视频

时间:2014-12-19 06:02:25

标签: jquery

我希望jQuery在按下按钮时播放我的iframe视频

JS:

$(document).ready(function() {
    $('#play').click(function() {   //#play is the id of the button
        $('#video').get(0).play();  //video id
    });
});

我尝试用

代替视频ID
  

$(' iframe中&#39)

无济于事。

2 个答案:

答案 0 :(得分:1)

如果视频元素位于iframe

$('iframe').contents().find('#video').get(0).play();

答案 1 :(得分:1)

以上建议都没有奏效。相反,做了什么:

     $(document).ready(function ($) {
        $('#play').click(function () {
        $('#video video')[0].play();  //looking for the video element in the parent
            });
        });