Is there some way i can make this loop it just stays at the last "1" http://pastebin.com/swDRrsfv
Also how do i properly space my code by 4 spaces?!?!?
Is there some way i can make this loop it just stays at the last "1" http://pastebin.com/swDRrsfv
Also how do i properly space my code by 4 spaces?!?!?
連結しようとしていると思います。
これを試してください...(文字列に追加したい回数で繰り返しを定義するだけです)。
afunc = function() {
$html = "";
for($1 = 0; $i < $repeats; $i++){
$html .= '1';
document.getElementById('text').innerHTML = $html;
sleep(1000);
}
}
毎回innerHTMLを1に再定義していたので、すべてのコマンドを実行し、各値が同じであるため、目に見える変更を加えていませんでした。
コードのフォーマット
4スペースコーディングに関する質問への回答として、{ }
タグをクリックしてコードフォーマットに自動的に変更するか、コードの各行の先頭に最小4スペース(および追加のスペース)を追加することができます。例として、私の答えの出典を見ることができます。
数を段階的に変更したい場合のこのコード(33行を数えました)
afunc = function() {
for (i=0; i<33; i++)
document.getElementById('text').innerHTML = i;
sleep(1000);
}
}