日期格式参考extjs api文档中的Date类型. var md = new Ext.form.DateField({ ............ format: 'Y-m-d H:i:s', ............ }); 替换'Y-m-d H:i:s'中的各个字母,当然增加和减少都没有问题,留意大小写.可得到多种样式的日期格式. Ext.Date的格式说明 d 01 to 31 D Mon to Sun j 1 to 31 l Sunday to Saturday N 1 (for Monday) through 7 (for Sunday) S st, nd, rd or th. Works well with j w 0 (for Sunday) to 6 (for Saturday) z 0 to 364 (365 in leap years) W 01 to 53 F January to December m 01 to 12 M Jan to Dec n 1 to 12 t 28 to 31 L 1 if it is a leap year, 0 otherwise. o Examples: 1998 or 2004 Y Examples: 1999 or 2003 y Examples: 99 or 03 a am or pm A AM or PM g 1 to 12 G 0 to 23 h 01 to 12 H 00 to 23 i 00 to 59 s 00 to 59 u 001 to 999 O Example: +1030 P Example: -08:00 T Examples: EST, MDT, PDT ... Z -43200 to 50400 c 2007-04-17T15:19:21+08:00 U 1193432466 or -2138434463 补充:20090416 下面列出的是目前所有支持的格式: 样本数据:用法举例:(注意你必须在字母前使用转意字符“\\”才能将其作为字母本身而不是格式符输出): 下面有一些标准的日期/时间模板可能会对你有用。它们不是 Date.js 的一部分,但是你可以将下列代码拷出,并放在 Date.js 之后所引用的任何脚本内,都将成为一个全局变量,并对所有的 Date 对象起作用。你可以按照你的需要随意增加、删除此段代码。 用法举例:
|
|