23

我正在寻找在 HTML5 音频播放器中重新启动音频文件。我已经定义了一个音频文件和一个play按钮。

<audio id="audio1" src="01.wav"></audio>
<button onClick="play()">Play</button>

当我单击play按钮时,音频文件开始播放,但是当我再次单击按钮时,音频文件不会停止并且不会再次播放,直到它到达文件末尾。

function play() {
    document.getElementById('audio1').play();
}

有没有一种方法可以让我在单击按钮时重新启动音频文件,onclick而不是等待歌曲停止?

4

3 回答 3

53

要重新开始歌曲,您可以:

function play() {
    var audio = document.getElementById('audio1');
    if (audio.paused) {
        audio.play();
    }else{
        audio.currentTime = 0
    }
}

小提琴

要切换它,就像再次单击时音频停止一样,当再次单击时它会从头开始重新启动,您可以执行以下操作:

function play() {
    var audio = document.getElementById('audio1');
    if (audio.paused) {
        audio.play();
    }else{
        audio.pause();
        audio.currentTime = 0
    }
}

小提琴

于 2013-07-14T04:00:37.227 回答
1
soundManager.setup({
preferFlash: false,
//, url: "swf/"
onready: function () {
    soundManager.createSound({
        url: [
            "http://www.html5rocks.com/en/tutorials/audio/quick/test.mp3", "http://www.html5rocks.com/en/tutorials/audio/quick/test.ogg"
        ],
        id: "music"
    });
    soundManager.createSound({
        url: [
            "http://www.w3schools.com/html/horse.mp3", 
        ],
        id: "horse"
    });
    soundManager.play("music"); 
}

}).beginDelayedInit();

并启动马并暂停当前在单击事件中播放的所有其他声音:

$("#horse").click(function () {
soundManager.stopAll();
soundManager.play("horse");

});

于 2015-11-08T07:56:53.203 回答
0
function sound(src) {
    this.sound = document.createElement("audio");
    this.sound.src = src;
    this.sound.setAttribute("preload", "auto");
    this.sound.setAttribute("controls", "none");
    //this.sound.style.display = "none";
    document.body.appendChild(this.sound);
    this.play = function () {
        this.sound.play();
    }
    this.stop = function () {
        this.sound.pause();
        this.sound.currentTime = 0
    }
}

您可以使用 /above 功能播放声音

 let mysound1 = new sound('xyz.mp3')
 mysound1.play()
于 2020-10-02T11:03:27.193 回答