html5 audio stop功能

2019-12-03 15:50:00

HTML5 Audio stop function


方法一:釜底抽薪

Instead of stop() you could try with:

sound.pause();
sound.currentTime = 0;

This should have the desired effect.


但有网友说这个chrome浏览器不适用


方法二:偷梁换柱


var ply = document.getElementById('player');

var oldSrc = ply.src;// just to remember the old source

ply.src = "";// to stop the player you have to replace the source with nothing



参考资料

    HTML5 Audio stop function

  • 2017-02-24 16:53:58

    PHP 中的Closure

    Closure,匿名函数,又称为Anonymous functions,是php5.3的时候引入的。匿名函数就是没有定义名字的函数。这点牢牢记住就能理解匿名函数的定义了。

  • 2017-03-02 09:45:27

    动态加载js和css

    开发过程中经常需要动态加载js和css,今天特意总结了一下常用的方法。

  • 2017-03-06 14:24:21

    mysql自增主键归零的方法

    如果曾经的数据都不需要的话,可以直接清空所有数据,并将自增字段恢复从1开始计数