Possible Duplicate:
Why avoid increment (「++」) and decrement (「--」) operators in JavaScript?
The 「unexpected ++」 error in jslint在JSLint的
jslint.com是給我的錯誤意外的 '++'
for (i = 0; i < l; ++i) {
我試圖i++
但沒有去。
Possible Duplicate:
Why avoid increment (「++」) and decrement (「--」) operators in JavaScript?
The 「unexpected ++」 error in jslint在JSLint的
jslint.com是給我的錯誤意外的 '++'
for (i = 0; i < l; ++i) {
我試圖i++
但沒有去。
JSLint不喜歡增量和減量運算符。將其替換爲i += 1
或將plusplus: true
指令添加到文件頂部(如果您不確定如何設置JSLint指令,這裏是一個示例,它們在文件頂部的正常註釋中設置):
/*jslint plusplus: true */
The
++
(increment) and--
(decrement) operators have been known to contribute to bad code by encouraging excessive trickiness. They are second only to faulty architecture in enabling to viruses and other security menaces.
完全荒謬的規則?你可以讓你自己的頭腦......
哇,jslint ...你讓我失望 – TheZ 2012-08-16 22:25:43
這是糟糕的英語.....故障架構在啓用病毒 – 2012-08-16 22:26:25
是的,我同意。這是廢話。 'I ++;'自從時間開始就被使用了。 – 2012-08-16 22:27:31
嘗試: 爲(VAR I = 0;我<升;我++){
如果不起作用,看看我是通過輸入我定義在控制檯中並看到響應。
已經... i ++ – 2012-08-16 22:23:35
試試i + = 1? ......... – 2012-08-16 22:23:59
必須有更多這個比你已經顯示.. – 2012-08-16 22:24:29