我正在尝试实现 jPlayer 以从 SHOUTcast 流式传输一些频道。一切都很好,直到“现在播放”部分。
测试区见这里:http ://www.powermixfmradio.com/2013/index.php
这个想法是,每次有人点击一个频道时,“现在在 xxxxxx 频道上直播:”应该根据所选频道而改变,但我不知道该怎么做。我用 PHP 制作了一个简单的脚本,它读取每个频道上的当前歌曲并将它们分配给 $trance、$house 等。例如,它<?php echo "$trance"; ?>
用于显示数据,但是每次频道更改(更改<?php echo "$trance"; ?>
为<?php echo "$house"; ?>
等等)时如何进行更改?
jPlayer 的开发者很好地以某种方式指导我并给了我一个开始:
select: function(index) {
index = (index < 0) ? this.original.length + index : index; // Negative index relates to end of array.
if(0 <= index && index < this.playlist.length) {
this.current = index;
this._highlight(index);
$(this.cssSelector.jPlayer).jPlayer("setMedia", this.playlist[this.current]);
// Add stuff here.
} else {
this.current = 0;
}
},
但由于我的 jq 知识非常有限,我不知道在那里添加或编辑什么。你能帮我吗?