我正在使用HTML标签来控制我的mp3文件。我从Start and stop for a embeded music in html using javascript works only in IE
学到了2个方法function play() {
document.embeds[0].play();
}
function stop() {
document.embeds[0].stop();
}
我的js代码如下:
<body>
<embed height="50" width="100" src="demo.mp3" AutoStart="false" loop="true">
<script type="text/javascript">
function play() {
document.embeds[0].play();
}
function stop() {
document.embeds[0].stop();
}
function pause() {
document.embeds[0].pause();
}
function forward() {
//how?
}
function rewind() {
//how?
}
function volumeup() {
//how to add volume?
}
function volumedown() {
//how to turn down?
}
</script>
</body>
并且,问题很明显,我仍然没有找到嵌入式控制MP3播放器的方法或功能。
我已经尝试过音频标签,但是在我的ie9(还有10个)中,它仍然无法正常工作,它会成为带有红色错误符号的黑盒子。
那么,有人可以给我一些建议吗?thx。