我怎樣才能得到1到10來顯示通過修復此代碼?我在做什麼錯誤?.js while循環
<script type="text/javascript">
var count = 0;
var numbers = new Array(10);
while (count <=10) {
numbers[count] = count;
++count;
}
count = 0;
while (count <=10) {
document.write(numbers[count] + 1 + "<br />");
+count();
}
</script>
我是新來這一點,任何幫助將不勝感激
現在有什麼行爲?我知道該怎麼做,但我想知道我的預期行爲是否正在發生。 – Purag 2012-02-23 03:01:45