为了根据某些<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();