添加以下html video标签后,我需要具有视频时长或视频时长,以便可以在变量中使用此时长。

  $(".container").append('<video  Id = "DivImage" src="Video/Video02.mp4" type="video/mp4" autoplay  /> ');


像这样 :

var duration = document.getElementById("DivImage").duration;


但不幸的是,它不起作用。请考虑我需要这段时间来将setInterval函数的参数更改为视频文件的长度。喜欢 :

  timer = setInterval(function () { cycleItems() }, duration);

最佳答案

尝试这个,

var duration = document.getElementById("DivImage").duration;

09-25 18:13
查看更多