gpt4 book ai didi

javascript - HTML5 视频播放器 onclick 播放/暂停不起作用

转载 作者:行者123 更新时间:2023-12-03 04:01:01 24 4
gpt4 key购买 nike

我想在点击视频时播放/暂停我的代码在这里,

<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script type="javascript">
$(document).ready(function () {
var myVideo = document.getElementById("video1");
function playPause()
{
if (myVideo.paused)
myVideo.play();
else
myVideo.pause();
}
//your code here
});
</script>
</head>
<body>
<video id="video1" onClick="playPause();" width="320" height="240" >
<source src="https://www.w3schools.com/html/movie.mp4" type="video/mp4">
</video>
</body>
</html>

我卡在哪里了?它显示错误,例如

ReferenceError: playPause is not defined

最佳答案

您有几个问题:

  • playPause仅在页面加载后定义,但您尝试在页面加载之前绑定(bind)它。您可以删除 $(document).ready()在绑定(bind)之前定义函数。

  • document.getElementById("video")返回undefined (除非您的帖子中存在拼写错误)作为您的 <video>元素的 ID 为 video1

这是一个工作代码:

<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">

<script type="javascript">
function playPause() {
var myVideo = $("#video1"); // or document.getElementById("video1");
if (myVideo.paused) {
myVideo.play();
} else {
myVideo.pause();
}

// Your code here
}
</script>
</head>
<body>
<video id="video1" onClick="playPause();" width="320" height="240" autoplay="on">
<source src="https://www.w3schools.com/html/movie.mp4" type="video/mp4">
</video>
</body>
</html>

关于javascript - HTML5 视频播放器 onclick 播放/暂停不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44721431/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com