current/duration time of html5 video?

前端 未结 5 1002
青春惊慌失措
青春惊慌失措 2020-11-28 07:23

I need a way of getting the total time length of the video and the current time with jquery and displaying it in a couple of

tags.

5条回答
  •  自闭症患者
    2020-11-28 08:01

    This page might help you out. Everything you need to know about HTML5 video and audio

    var video = document.createElement('video');
    var curtime = video.currentTime;
    

    If you already have the video element, .currentTime should work. If you need more details, that webpage should be able to help.

提交回复
热议问题