我想在Button Click上发出哔哔声。 我的应用程序不使用HTML5,因此我们无法使用HTML5 DOCType。
我使用的代码是 -
function PlaySound() {
if (soundObject != null) {
document.body.removeChild(soundObject);
soundObject.removed = true;
soundObject = null;
}
soundObject = document.createElement("embed");
soundObject.setAttribute("src", "Audio/Ping.wav");
soundObject.setAttribute("hidden", true);
document.body.appendChild(soundObject);
}
上面的代码工作正常Chrome。 我尝试了很多解决方案,但没有一个有效。