在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
在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不行 |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论