から文字列を返しますが、それはこの配列を反復処理し、1で配列1からHTMLの引用に戻すことは可能ですか?反復ループを通過すると、アレイ
これは私が把握することはできませんコードの私の作品です:
var quotes = ['"Time you enjoy wasting is not wasted time."',
'"You can have it all. Just not all at once."',
'"They say I am old-fashioned, and live in the past, but sometimes I think
progress progresses too fast!"'];
document.getElementById("btn1").addEventListener("click", newQuote);
function newQuote(){
for (var i = 0; i < quotes.length; i++) {
document.getElementById("quote").innerHTML = quotes[i];
}
}
よりあなたは答えのためにあなた! – NJV