我想知道我是否可以更改jplayer 播放列表的位置?我知道它的附加组件,但没有找到任何关于将其位置更改为出现在播放器右侧或同一页面上但甚至不接近播放器的声明。
我知道我可以编写自己的列表并实现“播放列表”功能,但需要知道我不能使用基本播放列表插件的功能来做到这一点。
问问题
435 次
1 回答
0
通过使用一些 DIV 作为播放列表并在该 div 的项目上实现 JPlayer 的功能来实现,例如:
Response.Write(i + " <a href='javascript:play(" + song.ID + ")' >" + song.ArtistName + " " + song.Title + " (" + song.AlbumTitle + ", " + song.Year + ")" +
"</a><br>");
在哪里play()
:
function play(songId) {
$.ajax({
cache: false,
url: "poligon.aspx",
data: "songId=" + songId,
success: function (result) {
$(".jp-title").html(result.Text);
$("#jquery_jplayer_1").jPlayer("setMedia", {
mp3: result.MP3
});
SetNextSong(result.NextSongID);
SetPreviousSong(result.PreviousSongID);
$("#jquery_jplayer_1").jPlayer("play", 0);
},
error: function (error) {
alert(error);
}
});
}
于 2012-10-08T09:55:35.507 回答