如何在 html/html5 中显示图像和音频?

How to display an image along with audio in html/html5?

我想显示带有音频附件(如 mp3 文件)的图像。在 html5 中完成这项工作的最佳方法是什么?

就这么简单?

<img src="some_image.jpg" />
<audio controls
   src="some_audio.mp3">
   Your browser does not support the <code>audio</code> element.
</audio>

这将显示下方带有音轨的任何图像。如果您想要与 img+audio 进行某种动态交互,则需要使用 javascript。如果是这样我可以举个例子