Have sound play when alert is triggered

后端 未结 4 1157
盖世英雄少女心
盖世英雄少女心 2020-12-10 15:20

So I have in my javascript an if statement. When it returns true it opens an alert box and plays an alarm sound. The problem is that the sound doesn\'t play until I hit th

4条回答
  •  Happy的楠姐
    2020-12-10 15:48

    You can use:

    var snd = new Audio('/alarm.mp3');    
    snd .onended = function () { alert("Thank you!"); };
    snd .play();
    

提交回复
热议问题