以下是源碼,希望得到大神解答,我就是想格外增加一個(gè)顯示視頻播放時(shí)間的,但是不知怎么敲代碼,希望大神幫忙看看,謝謝了!<!DOCTYPE html><html><head>? ? <meta charset="UTF-8">? ? <title>media3</title></head><body>? ? <video id="myVideo" width="800" height="600" currentTime = 0;>? ? ? ? <source src="https://s3.amazonaws.com/distill-videos/videos/processed/1716/Northernlights2_HD.mp4.mp4" type="video/mp4">? ? ? ? 瀏覽器不支援標(biāo)籤? ? </video>? ? <br>? ? 方法? ? <br>? ? <button id="play_btn">play</button>? ? <button id="pause_btn">pause</button>? ? <button id="stop_btn">stop</button>? ? <button id="load_btn">load</button>? ? <script>? ? ? ? var myMedia = document.getElementById("myVideo");? ? ? ? document.querySelector("#play_btn").onclick = function(){? ? ? ? ?myMedia.play();? ? ? ? }? ? ? ??? ? ? ? document.querySelector("#pause_btn").onclick = function(){? ? ? ? ?myMedia.pause();? ? ? ? }? ? ? ? document.querySelector("#stop_btn").onclick = function(){? ? ? ? ?myMedia.pause();? ? ? ? ?myMedia.currentTime = 0;? ? ? ? }? ? ? ? document.querySelector("#load_btn").onclick = function(){? ? ? ? ?myMedia.load();? ? ? ?? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? }? ? ? ??? ? </script></body></html>
請(qǐng)問(wèn)怎么格外顯示視頻中的播放時(shí)間呢?HTML5中的,急!?。?/h1>
掌門(mén)飛哥
2016-05-09 11:18:36
掌門(mén)飛哥
2016-05-09 11:18:36