我无法播放.wav文件。
这是我获取文件的代码:var tableHitSound = new Audio("707 Rim.wav");
对于播放:
tableHitSound.load();
tableHitsound.play();
这段代码没有错误,可以找到文件,但是无法播放文件,即我什么也没听到。
console.log(tableHitSound.duration);
返回NaN
console.log(tableHiSound.ended);
返回false
我做错了什么吗?
最佳答案
两种可能的解决方案:
tableHitsound.play();
-``sound''中的``s''在这里是小写的,但在变量初始化中为大写