It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center




7年前关闭。




有人可以知道在哪里可以找到HTML5音频的事件侦听器列表吗?

最佳答案

您可以在 Media Events here下列出的w3school网站上找到它们!下次尝试用谷歌搜索这些东西。这比使社区陷入一个简单搜索就能解决的问题要容易得多。

要将事件侦听器添加到音频元素,只需简单地执行此操作

var audio = document.createElement("audio");
audio.src = "audio/sample.mp3";
audio.addEventListener("canplaythrough", function () {
 alert('The file is loaded and ready to play!');
}, false);

除了canplaythrough,您还可以使用我在W3上发布的所有媒体事件。

10-07 19:34
查看更多