【仅供内部供应商使用,不提供对外解答和培训】

Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

 

Note

所有的循环体和判断体都需要用"{}"括起来。

 

 

Code Block
languagejs
title不推荐的写法
if (condition)statement;
Code Block
languagejs
title正确的写法
if (condition) { 
	statement; 
}

 

 

Note

不要使用with, void, eval。

 

...

Code Block
languagejs
title正确的写法
var date = new Date(2014, 10,1);