如何使用 html5

发布于 2024-12-07 16:07:16 字数 441 浏览 2 评论 0原文

知道如何执行以下操作吗?

<video src="video1.ogv" id="ve1" controls>
Your browser does not support HTML5 video.
</video>

<video src="video1.ogv" id="ve2" controls>
Your browser does not support HTML5 video.
</video>

<button onclick="document.getElementById('ve1').play()">
Play</button>

我有两个视频,id 分别为“ve1”和“ve2”。目前,上面的按钮代码将在按下时启用“ve1”上的播放!启用两个视频播放的任何简单方法。我尝试更改按钮标签内的代码,但尚未成功。

any idea how to carry out the following?

<video src="video1.ogv" id="ve1" controls>
Your browser does not support HTML5 video.
</video>

<video src="video1.ogv" id="ve2" controls>
Your browser does not support HTML5 video.
</video>

<button onclick="document.getElementById('ve1').play()">
Play</button>

I have two videos with id's 've1' and 've2' respectively. At the moment the code above for the button will enable play on 've1' when pressed! Any simple way of enabling play on both videos. I have tried altering the code within the button tag with no success as of yet.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

鹿港小镇 2024-12-14 16:07:16

您可以简单地将 onclick 值更改为:

onclick="document.getElementById('ve1').play();document.getElementById('ve2').play();"

但将其移动到一个单独的 JavaScript 函数中可能会更清晰,该函数设置播放并调用:

onclick="playVideos"

并且:

<script>
function playVideos() {
   document.getElementById('ve1').play();
   document.getElementById('ve2').play();
}
</script>

You could simply change the onclick value to:

onclick="document.getElementById('ve1').play();document.getElementById('ve2').play();"

But it might be cleaner to move it into a separate JavaScript function which sets the play going and calls that:

onclick="playVideos"

And:

<script>
function playVideos() {
   document.getElementById('ve1').play();
   document.getElementById('ve2').play();
}
</script>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文