<!DOCTYPE html>
<html>
<body>
<h2>Linking To a Song</h2>
<p><a href="horse.mp3">Click here to play the sound</a></p>
</body>
</html>
我想知道如何获得上述链接;单击 > 并内联播放声音文件,而无需打开新窗口并显示丑陋的快速加载程序。我希望使用带有音频的新 HTML5 技术来简单地允许“单击 > 播放”。
<!DOCTYPE html>
<html>
<body>
<h2>Linking To a Song</h2>
<p><a href="horse.mp3">Click here to play the sound</a></p>
</body>
</html>
我想知道如何获得上述链接;单击 > 并内联播放声音文件,而无需打开新窗口并显示丑陋的快速加载程序。我希望使用带有音频的新 HTML5 技术来简单地允许“单击 > 播放”。