success change source & track of video use onclick button, but the video still same

后端 未结 2 866
庸人自扰
庸人自扰 2021-01-17 05:17

Before i start, i\'m sorry if i belong is repost. But, i still not get the answer after check the previous thread.

i try to change source of video with onclick butto

2条回答
  •  自闭症患者
    2021-01-17 05:45

    When you change the src of the element, it doesn't change the src of the element. You have to call its load method :

    function myFunction1() {
      document.getElementById("myVideo").src = "http://media.w3.org/2010/05/bunny/movie.mp4";
    //  document.getElementById("mySubtitle").src = "/Subtitle2.srt";
      document.querySelector('video').load();
    }
    
    
    

提交回复
热议问题