Immediate play sound on button click in HTML page

后端 未结 5 1121
旧巷少年郎
旧巷少年郎 2021-02-02 17:42

In my HTML page I have 9 images for dialing numbers and one text box that shows the pressed numbers. I want each of those images to immediately play beep sound when users click

5条回答
  •  借酒劲吻你
    2021-02-02 18:32

    If you only need to support recent browsers, then HTML 5 offers you the Audio object

    to load/buffer your sound:

    var snd = new Audio("file.wav");
    

    to play the sound:

    snd.play();
    

    to re-cue it to the beginning (so that you can play it again):

    snd.currentTime=0;
    

提交回复
热议问题