JavaScript-声音不能与随机值一起播放

时间:2018-10-20 16:05:12

标签: javascript arrays object audio random

我有一个函数,可以以非重复的方式显示对象数组中的随机单词。

我的目标是使它与每个单词一起播放一个声音剪辑(该声音将作为单词的发音)。

但是,由于某些原因,在任何浏览器中我都听不到声音,也没有出现任何错误消息。原因可能是什么?

这就是我正在使用的:

const p = document.getElementById("randomWord");
const myWords = [
    {
       text: "alpha",
       audio: "alpha.mp3"
    },
        {
       text: "bravo",
       audio: "bravo.mp3"
    },
        {
       text: "charlie",
       audio: "charlie.mp3"
    },
        {
       text: "delta",
       audio: "delta.mp3"
    },
    {
       text: "echo",
       audio: "echo.mp3"
    }
 ];
 let remainingWords = [];

function randomize() {
  if (remainingWords.length === 0) remainingWords = myWords.slice();
  let length = remainingWords.length;
  let randomIndex = Math.floor(Math.random() * length);
  const word = remainingWords[randomIndex];
  remainingWords.splice(randomIndex, 1);
  console.log(word);
  console.dir(p);
  p.textContent = word.text;
  document.getElementById("soundClip").play(word.audio);
}
    <audio id="soundClip">Your browser does not support the audio element.</audio>
    <button onclick="randomize()" type="button">Random Word</button>
    <p id="randomWord"></p>

1 个答案:

答案 0 :(得分:1)

HTMLMediaElement.play() function不接受参数,您正在尝试传递一个参数。

未使用的参数不是JavaScript中的致命错误;它们只是不被使用,因此出于所有意图和目的,您仅在呼叫.play()

由于<audio>元素没有与之关联的源,因此不会播放任何内容。

尝试

const audioElement = document.getElementById("soundClip");
audioElement.src = word.audio;
audioElement.play();

相反。