點評:在html 5中的audio標簽中,只有暫停按鈕,但沒有停止按鈕,其實為其增加也不麻煩,接下來介紹實現方法,有需要的朋友可以參考下
在html 5中的audio標簽中,只有暫停按鈕,但沒有停止按鈕,其實為其增加也不麻煩,方法如下:復制代碼
代碼如下:
HTMLAudioElement.prototype.stop = function()
{
this.pause();
this.currentTime = 0.0;
}
復制代碼
代碼如下:
var aud = new Audio();
aud.src = '特殊他.ogg';
aud.play();
aud.stop();
新聞熱點
疑難解答