嗨,我是一个音乐网站初学者,我想要使用carrierwave上传歌曲并在播放器上播放我已经在我的网站中集成了jplayer现在如何播放上传的歌曲并创建下一首歌曲,在jplayer中播放以前的歌曲? ...提前谢谢,我的jplayer功能看起来像这样
<script type="text/javascript">
$(document).ready(function(){
$("#jquery_jplayer_1").jPlayer({
ready: function () {
$(this).jPlayer("setMedia", {
title: "Bubble",
m4a: "http://localhost:3000/uploads/song/song/1/02_-__Ayayayo_Aanthamey.mp3",
oga: ""
});
},
swfPath: "",
supplied: "m4a, oga"
});
});