HTML5 setting audio source in javascript not working

后端 未结 3 1099
终归单人心
终归单人心 2020-12-17 19:02

Due to HTML5 browser formats tricks I have to put fallback audio formats also in audio format. I want to set the src of source in audio programmatically but it is not worki

3条回答
  •  星月不相逢
    2020-12-17 19:05

    After you set the src attribute on the source element, call load() and then play() on the audio element. (Or, just load() if you have the autoplay attribute set.)

提交回复
热议问题