javascript - 由用户输入以固定间隔触发的音频

时间:2015-07-15 04:35:21

标签: javascript audio

为了根据某些<audio>播放inputs,我的app最终会以function结束:

   function play_song() {

    var id = Song.prototype.lyricsIntersect(input);
    var element = document.getElementById(id);
    element.play();
}

现在我需要确定global variable "input",即由用户触发array创建的events

    <textarea id="chat"> </textarea>
    <button type="button" onclick="play_song();">talk</button>

我想建立一个array来存储所有提交的单词,但只能在固定的时间间隔后运行input。有可能吗?

鉴于下面的function,我是否走在正确的轨道上?

   var input = function() {
           words = [];
           var chat = document.getElementById("chat").value.split("");
           words.push(chat);
           // setInterval(function(){}, 60000);
        }

   input();

0 个答案:

没有答案