JavaScript - 播放列表的音乐播放器

时间:2014-04-18 08:24:25

标签: javascript playlist audio-player

我正在尝试使用JavaScript播放音乐播放列表,但是我无法让它改变歌曲。 Here is the fiddle,如果有人能告诉我自己做错了什么,我将非常感激。我正在使用此代码更改歌曲:

var newSong = songs[counter];
var player = document.getElementById('audio');
player.setAttribute('src', newSong);
player.load();
player.play();

1 个答案:

答案 0 :(得分:2)

你的代码工作正常没有错。

您只是忘了在下面的截图中设置无包装<body> 选项。

enter image description here

var songs = ['http://www.tonycuffe.com/mp3/tail%20toddle.mp3', 'http://www.tonycuffe.com/mp3/cairnomount.mp3', 'http://www.tonycuffe.com/mp3/pipers%20hut.mp3'];

Fiddle