1

我有以下代码可以在我的网站上播放音频。问题是播放音频不会停止或暂停播放新的。所有文件都像疯了一样一起播放。

$().ready(function () {
    PlayMp3('sounds/file1.mp3');
    PlayMp3('sounds/file2.mp3');
    PlayMp3('sounds/file3.mp3');
    PlayMp3('sounds/file4.mp3');
});
    function PlayMp3(file) {
            var isiPad = navigator.userAgent.match(/iPad/i) != null;
            var isiPhone = navigator.userAgent.match(/iPhone/i) != null;
            var isiPod = navigator.userAgent.match(/iPod/i) != null;
            pauseAllAudio();

            if (navigator.userAgent.indexOf("Firefox") != -1) {
                file = file.replace("mp3", "ogg");            
                $('#content').append('<audio src="' + file + '" controls preload="auto" autobuffer autoplay="autoplay" style="display:none"></audio>');
            }
            else if (isiPad || isiPhone || isiPod) {           
                var snd = new Audio(file);
                snd.load();
                snd.play();            
            }
            else {
                $('#content').append('<embed height="0" width="0" src="' + file + '">');
            }


        }

        function pauseAllAudio() {
            $('video, audio').each(function () {
                $(this)[0].pause();
            });
            var allAudioEls = $('audio');
            allAudioEls.each(function () {
                var a = $(this).get(0);
                a.pause();
            });

            $('audio').remove();
            if (snd != undefined) {
                snd.pause();
            }
        }

这不是一个重复的问题。我在这里尝试了类似问题的所有解决方案,但没有一个解决方案适合我。谢谢。

4

2 回答 2

1

小变化。

$('video, audio').each(function () {
    $(this).get(0).stop();
});

说它是否有效。

更新#1

检查以下是否有效:

  1. $(this)[0].pause();
  2. $(this).get(0).pause();
于 2012-10-13T02:46:19.553 回答
0

感谢普拉文库马尔。没有他,我不可能找到删除“嵌入”的问题。添加$('embed').remove();function pauseAllAudio(). 它适用于除 Firefox 之外的所有浏览器。那个 Firefox 不喜欢 mp3 或<embed>标签。我必须做更多的研究才能使其仅适用于该浏览器。

jPlayer 看起来很棒,它解决了我的问题。解决方法如下。

 function PlayMp3(file) {
    $('embed').remove();
    if (navigator.userAgent.indexOf("Firefox") != -1) {
            file = file.replace("mp3", "ogg");
            $('#jquery_jplayer').jPlayer("pauseOthers");
            $('#jquery_jplayer').jPlayer("setMedia", { oga: file });
            $('#jquery_jplayer').jPlayer("play");
    }
    else {
        $('#content').append('<embed height="0" width="0" src="' + file + '">');
}

我不得不放弃 HTML 5<audio>标签。:(

于 2012-10-13T10:55:58.550 回答