html5中为audio标签增加停止按钮动作实现方法
程序员文章站
2023-11-27 10:42:28
在html 5中的audio标签中,只有暂停按钮,但没有停止按钮,其实为其增加也不麻烦,接下来介绍实现方法,有需要的朋友可以参考下... 13-01-04...
在html 5中的audio标签中,只有暂停按钮,但没有停止按钮,其实为其增加也不麻烦,方法如下:
htmlaudioelement.prototype.stop = function()
{
this.pause();
this.currenttime = 0.0;
}
其实很简单,就是先暂停,然后时间归0;
调用方法:
var aud = new audio();
aud.src = '特殊他.ogg';
aud.play();
aud.stop();
上面代码可以在chrome,opera下跑,但firefox 17不行
复制代码
代码如下:htmlaudioelement.prototype.stop = function()
{
this.pause();
this.currenttime = 0.0;
}
其实很简单,就是先暂停,然后时间归0;
调用方法:
复制代码
代码如下:var aud = new audio();
aud.src = '特殊他.ogg';
aud.play();
aud.stop();
上面代码可以在chrome,opera下跑,但firefox 17不行