测试浏览器在 JavaScript 中播放 wav 文件的能力

发布于 2024-12-01 19:09:10 字数 457 浏览 0 评论 0原文

有没有办法测试浏览器在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);
    }

Is there a way to test for browser's ability to play a wav file in javascript

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);
    }

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

抚笙 2024-12-08 19:09:10

你可以使用 html5

<audio id="audio-tag-element" controls="" src=myWAVfile tabindex="0"></audio>

Ie8,少一点就不行

you can use html5

<audio id="audio-tag-element" controls="" src=myWAVfile tabindex="0"></audio>

Ie8 and less will not work

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文