请帮助我了解为什么我在控制台上使用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属性有相同的问题
答案 0 :(得分:0)
在您的情况下,您没有正确分配元素的ID属性:
更改id"vid"
到id="vid"