Uncaught TypeError:无法在resumeVideo上读取null的属性“ play”

时间:2018-09-07 19:40:23

标签: javascript

请帮助我了解为什么我在控制台上使用Google chrome出现此错误。

<!DOCTYPE html>
<html lang="en" dir="ltr">
  <head>
    <meta charset="utf-8">
    <title></title>
  </head>
  <body>

    <video width="600" id"vid">
      <source src="Video/caballeroCorriendo.mp4" type="video/mp4">
    </video>

    <button onclick="intervalo();">Iniciar</button>

    <script src="vid.js"></script>
  </body>
</html>

这是js:

var video = document.getElementById("vid");

function resumeVideo(){
  video.play();
}

function intervalo(){
  tiempoParar = setInterval(tiempo, 1000/30);
  resumeVideo();
}

var segundos;

function tiempo(){
  segundos = video.currentTime;
  console.log(segundos);
}

currentTime属性有相同的问题

1 个答案:

答案 0 :(得分:0)

在您的情况下,您没有正确分配元素的ID属性:

更改id"vid"id="vid"