zoukankan      html  css  js  c++  java
  • 用js控制video的src_百度知道

    代码如下 <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"> <bu...展开
    //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();
        }
    }
  • 相关阅读:
    Mysql多表关系
    Linux权限
    Linux安装python环境脚本
    ZJNU 2136
    ZJNU 2135
    ZJNU 2133
    ZJNU 1699
    ZJNU 1542
    ZJNU 1538
    ZJNU 1535
  • 原文地址:https://www.cnblogs.com/wzjwffg/p/9883908.html
Copyright © 2011-2022 走看看