Dzwebs.Net

撰写电脑技术杂文十余年

js动态为video标签添加新视频

Admin | 2016-10-23 7:43:36 | 被阅次数 | 10911

温馨提示!

如果未能解决您的问题,请点击搜索;登陆可复制文章,点击登陆

  一、<!-- html部分 -->

  <section id="player">

    <video id="media" width="100%" height="100%" controls>
        <source id="v1" src="video/1.mp4">
    </video>
  </section>
 
  <div class="container" width="100%" style="margin-top:20px">
    <button id="u1" class="btn span2">第一章</button>
    <button id="u2" class="btn span2">第二章</button>
    <button id="u3" class="btn span2">第三章</button>
    <button id="u4" class="btn span2">第四章</button>

  </div>

  二、js部分

  window.onload=function(){
    document.getElementById("u1").onclick=function(){
        document.getElementById("v1").src="video/1.mp4";
        document.getElementById("media").load();
    }
    document.getElementById("u2").onclick=function(){
        document.getElementById("v1").src="video/2.mp4";
        document.getElementById("media").load();
    }
    document.getElementById("u3").onclick=function(){
        document.getElementById("v1").src="video/3.mp4";
        document.getElementById("media").load();
    }
    document.getElementById("u4").onclick=function(){
        document.getElementById("v1").src="video/4.mp4";
        document.getElementById("media").load();
  //document.getElementById("media").play();
    }
  }


该杂文来自: 网页制作杂文

上一篇:css3 div画左半圆

下一篇:CSS3制作三角形

网站备案号:

网站备案号:滇ICP备11001339号-7

版权属性:

Copyright 2007-2021-forever Inc. all Rights Reserved.

联系方式:

Email:dzwebs@126.com QQ:83539231 访问统计