有没有一种方法可以测试浏览器在JavaScript中播放WAV文件的能力

function playSound(myWAVfile)
    {
        if (soundEmbed)
        {
           document.body.removeChild(soundEmbed);
        }
        soundEmbed = document.createElement("embed");
        soundEmbed.setAttribute("src", myWAVfile);
        soundEmbed.setAttribute("hidden", true);
        soundEmbed.setAttribute("autostart", true);
        document.body.appendChild(soundEmbed);
    }

最佳答案

这应该对您有很大帮助:http://www.schillmania.com/projects/soundmanager2/

08-26 06:13