使用html5音频时,您可以提供多种格式/编解码器:
<audio controls>
<source src="horse.ogg" type="audio/ogg">
<source src="horse.mp3" type="audio/mpeg"> <-- secondary format here
Your browser does not support the audio element.
</audio>
我用
创建音频var audio = new Audio('pathtomyaudio/myaudio.mp3');
audio.load();
有没有办法动态提供其他扩展程序,如ogg?
任何帮助表示赞赏:)