点评:在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();
新闻热点
疑难解答