使用jQuery在10秒后播放视频

时间:2015-07-02 20:25:44

标签: jquery html5

我想在10秒后播放视频。 setTimeOut的功能似乎不起作用。 这是javascript函数:

printf '%q\n' "${arr[@]}"

html部分:

$('.top').toggle( 3000 );
$('.top1').delay(3000).toggle(3000);
setTimeout(function(){
    $(".video").play();
}, 6000); 

1 个答案:

答案 0 :(得分:1)

play()方法在HTMLVideoElement上,而不是jQuery对象。试试这个:

setTimeout(function(){
    $(".video")[0].play(); // note the [0] to access the native element
}, 10000); // 10 seconds = 10000 ms