实际上,我能够使用框架在整个页面中连续播放音乐而无需重新加载(我知道连续播放音乐不是一个好主意,但客户确实要求这样做,所以我别无选择)。这是我用于播放音乐的框架:
<body>
<div id="player">
<audio id="audio" controls="controls" autoplay="autoplay" loop="loop" style="width:150px;">
<source src="martnalia05namoracomigo.ogg" type="audio/ogg" />
<source src="martnalia05namoracomigo.mp3" type="audio/mp3" />
<embed src="martnalia05namoracomigo.mp3" hidden="true" loop="TRUE" autostart="TRUE"></embed>
</audio>
</div>
</body>
我插入这首音乐只是为了测试,我想知道是否可以制作一个播放列表,是否可以通过其中的链接和跳过音乐的按钮通知当前正在播放的音乐,因为例子:
[player]
| button previous | button to play/pause | button next
| name of the music (link to the page of the Album) |
[end of player]
有什么建议么?