extjs DateField 的值用getValue()方法获取后是一大堆字符串,类似Tue Dec 07 2010 00:00:00 GMT 0800,这玩意存入数据库实在不好办。。。所以要把它格式化一下,方法很简单,用EXT的
Ext.util.Format.date()方法
示例:
var gedt = Ext.util.Format.date(日期控件.getValue(), ‘Y-m-d‘);
出来的日期格式就是2010-10-10这样的
//
date(
String/Date value, [String format]
) :
String
Formats the passed date using the specified format pattern.
Parameters
- value : String/Date
The value to format. If a string is passed, it is converted to a Date by the Javascript‘s built-in Date.parse method.
- format : String (optional)
Any valid date format string. Defaults to Ext.Date.defaultFormat.
extjs datafield 格式化
时间: 2024-10-20 06:25:16