我有一个从 javascript 外部文件生成的 128kbps 播放器。
<script type="text/javascript" src="http://shoutcast.mixstream.net/js/external/flash/s2.vanavilfm.com:8560:1::cc0000:F4A213:::1"></script>
和另一位 64kbps 的播放器。
<script type="text/javascript" src="http://shoutcast.mixstream.net/js/external/flash/s2.vanavilfm.com:8000:1::cc0000:F4A213:::1"></script>
我希望我的用户使用以下方式选择比特率:
<select id="bitrate" name="bitrate">
<option value="2">128 Kbps</option>
<option value="1">64 Kbps</option>
</select>
So that when option 128kbps is selected only the player at 128kbps is displayed and played then vice versa using jquery..
请帮忙。