javascript - js implements custom media player
阿神
阿神 2017-05-19 10:28:03
0
1
553
  <p class="controls">
        <input type="button" value="Play" id="video-btn">
        <span id="curtime">0</span>/<span id="duration">0</span>
    </p>
</p>
<script>
    window.onload = function(){

        //get references to the elements
        var player = document.getElementById("player");
        var btn = document.getElementById("video-btn");
        var curtime = document.getElementById("curtime");
        var duration = document.getElementById("duration");
        ***duration.innerHTML = player.duration;***

Ask the master, why do you need to set duration.innerHTML = player.duration here? Wouldn’t it still work if you don’t set it?

阿神
阿神

闭关修行中......

reply all(1)
给我你的怀抱

Found the solution

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template