如何将歌曲添加到jPlayer

How to add a song to jPlayer?

本文关键字:添加 jPlayer      更新时间:2023-09-26

当用户点击链接时,我想向jPlayer添加一首歌曲。我该怎么做?

添加到原型对象。

Playlist.prototype
addMedia: function(media) {
  this.playlist.push(media);
  this.displayPlaylist();
}

然后像这样使用:

myPlaylist.addMedia( {
  name:"Tempered Song",
  mp3:"http://www.jplayer.org/audio/mp3/Miaow-01-Tempered-song.mp3",
  oga:"http://www.jplayer.org/audio/ogg/Miaow-01-Tempered-song.ogg",
  poster: "http://www.jplayer.org/audio/poster/Miaow_132x132.jpg"
});