我写了一些代码来在我的页面上播放 .mp3 文件。它适用于 FF 和 Chrome。
JS
aSound = document.createElement("audio");
aSound.setAttribute("src", "content/audio/gameIntro.mp3");
aSound.play();
但是,IE8 显示此错误:Object doesn't support this property or method
对于第 3 行代码,即aSound.play();
. 我能做些什么来解决这个错误?