jquery文本框设置默认时间
不知道是extjs的dataPicker还是jquery插件的extjs:{xtype: 'datafiled',value: new Date()}jquery插件$("#datepicker").datepicker({defaultDate : new Date() //还可以是时间字符串,当前日期对应的时间数值});
extjsjquery.datePicker如何设置默认显示当天时间
不知道是extjs的dataPicker还是jquery插件的extjs:{ xtype: 'datafiled', value: new Date()}jquery插件$("#datepicker").datepicker({ defaultDate : new Date() //还可以是时间字符串,当前日期对应的时间数值});