播放WAV文件的能力有沒有一種方法來測試瀏覽器的打在javascript測試瀏覽器中的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);
}
專門查看是否有方法在javascript中檢測瀏覽器對聲音的支持。 –