我想在10秒后播放视频。 setTimeOut的功能似乎不起作用。 这是javascript函数:
printf '%q\n' "${arr[@]}"
html部分:
$('.top').toggle( 3000 );
$('.top1').delay(3000).toggle(3000);
setTimeout(function(){
$(".video").play();
}, 6000);
答案 0 :(得分:1)
play()
方法在HTMLVideoElement上,而不是jQuery对象。试试这个:
setTimeout(function(){
$(".video")[0].play(); // note the [0] to access the native element
}, 10000); // 10 seconds = 10000 ms