测试浏览器在 JavaScript 中播放 wav 文件的能力
有没有办法测试浏览器在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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这应该对您有很大帮助:http://www.schillmania.com/projects/soundmanager2/
This should help you a lot: http://www.schillmania.com/projects/soundmanager2/
你可以使用 html5
Ie8,少一点就不行
you can use html5
Ie8 and less will not work