Versions Compared

Key

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

...

Code Block
languagejs
title正确的写法
FR.Button = FR.extend(FR.Widget, { 
    _defaultConfig: function () {
        return {cls : 'fr-btn'};
    }
};

 

  •  不能使用new Date("2014-01-01")这样的日期函数。改用new Data(年,月,日,时,分,秒)。

...