我正在尝试在 Firefox 或 Google Chrome 以外的其他浏览器中使用 HTML5 音频标签,但它似乎不起作用。任何帮助将不胜感激。该控件显示在 Firefox 中,但它似乎没有播放该文件。
这是我的代码:
<audio id="audioplayer" preload controls loop style="width:424px;">
<source src="02-24-13 Ed Randall with Art Shamsky.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
<script type="text/javascript">
var audioTag = document.createElement('audio');
if (!(!!(audioTag.canPlayType) && ("no" != audioTag.canPlayType("audio/mpeg")) && ("" != audioTag.canPlayType("audio/mpeg")))) {
AudioPlayer.embed("audioplayer", {soundFile: "02-24-13 Ed Randall with Art Shamsky.mp3"});
}
</script>