多くの文字列を含む大きな配列があります。それをテキスト フィールドに 1 つずつ表示し、スペース バーを使用してそれぞれを自動的に連結したい
ここに私のコード
<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