尝试像这样在javascript中向音频对象添加停止功能
//Give the Audio object a stop function
Audio.prototype.stop = function()
{
this.pause();
this.currentTime = 0.0;
}
可以这样使用
var aud = new Audio();
aud.src = 'background.ogg';
aud.play();
aud.stop();
适用于谷歌浏览器,但不适用于 Firefox。有任何想法吗 ?