用jsp代码怎么来控制嵌入的音乐播放器的上一首下一首,循环播放,顺序播放,播放,暂停功能
<OBJECT ID="wmp"
CLASSID="CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6"
TYPE="application/x-oleobject"
STYLE="position: relative; left: 0px; top: 0px; width: 0px; height: 0px;">
<PARAM NAME="autoStart" VALUE="true">
<param name="URL"
value="D:\毕业设计\1108000305\WebContent\songs\爱夏.mp3">
<PARAM NAME="balance" VALUE="0">
<PARAM NAME="currentPosition" VALUE="0">
<PARAM NAME="currentMarker" VALUE="0">
<PARAM NAME="enableContextMenu" VALUE="false">
<PARAM NAME="enableErrorDialogs" VALUE="false">
<PARAM NAME="enabled" VALUE="true">
<PARAM NAME="fullScreen" VALUE="false">
<PARAM NAME="invokeURLs" VALUE="false">
<PARAM NAME="mute" VALUE="false">
<PARAM NAME="playCount" VALUE="-1">
<PARAM NAME="rate" VALUE="1">
<PARAM NAME="uiMode" VALUE="none">
<PARAM NAME="volume" VALUE="100">
</OBJECT>
<br> <br> <br> <br>
<img src="images\before.png" width="50" height="50" onclick="javascript:if(wmp.playState==3)wmp.fullScreen=true;" alt="全屏" style="cursor: hand">
<img src="images\play.png" width="50" height="50" onclick="wmp.controls.play();" alt="播放" style="cursor: hand">
<img src="images\stop.png" width="50" height="50" onclick="wmp.controls.pause();" alt="暂停" style="cursor: hand">
<img src="images\next.png" width="50" height="50" onclick="wmp.controls.Stop();" alt="停止" style="cursor: hand">
<img src="1\1.jpg" width="20" height="20" onclick="wmp.settings.mute = !wmp.settings.mute;" alt="静音" style="cursor: hand">
播放、暂停可以实现,但是上下首,循环播放,顺序播放,怎么用数组和javascript来实现呢?
本人菜鸟,求大神帮忙啊。谢谢。