我正在使用jplayer。mp3 播放完毕后,我想将类名从“stop”更改为“play”。我怎么能在jplayer中做到这一点?
<div id="topid">
<a class="stop" onclick="play('test1.mp3');" href="javascript:;"></a>
</div>
我正在使用jplayer。mp3 播放完毕后,我想将类名从“stop”更改为“play”。我怎么能在jplayer中做到这一点?
<div id="topid">
<a class="stop" onclick="play('test1.mp3');" href="javascript:;"></a>
</div>
您可以使用该$.jPlayer.event.ended
事件。我的意思是,来吧,阅读文档。
来自同一链接的用法示例:
$("#repeat-on").click( function() {
$("#jpId").bind($.jPlayer.event.ended + ".jp-repeat", function(event) { // Using ".jp-repeat" namespace so we can easily remove this event
$(this).jPlayer("play"); // Add a repeat behaviour so media replays when it ends. (Loops)
});
return false;
});