我需要能够建立将歌曲发送到中央JPlayer的链接。
例如,在一家商店上,有人想在购买曲目之前先对其进行采样,然后单击链接,链接会将信息发送到JPlayer并开始播放该曲目。
我已经看到在其他stackoverflow问题here(7岁)中使用类似于以下内容的示例,但是无法使其正常工作。
更新:我已经尝试了以下方法,但是该链接没有任何作用。
$(document).ready(function(){
$("#jquery_jplayer").jPlayer({
swfPath: "../../dist/jplayer",
supplied: "mp3",
wmode: "window"
});
$('a[data-mp3]').click(function(e) {
e.preventDefault();
// replace #my-j-player by the id of your instance
$("#jquery_jplayer").jPlayer("setMedia", {
mp3: $(this).attr("data-mp3"),
oga: $(this).attr("data-ogg")
}).jPlayer("play");
});
});
<a href="#" data-mp3="http://www.jplayer.org/audio/mp3/Miaow-01-Tempered-song.mp3">TEST</a>