我有一个带有很多字符串的大数组我想将它一个一个地显示在文本字段中,并用空格键自动连接到每个字符串
我的代码在这里
<script>
x=0
function abc(){
for (i=0;i<words[x].length;i++){
if(x=0)
x++;
document.getElementById("type").value=words[x];
}
</script>
我的输入字段 id 是type
,我的数组是words