我遇到了cakephp输入类型日期的问题。
如何将12月转到Dec
,1月到Jan
等等?
我有这段代码:
$this->Form->input('Profile.birthday', array(
'label' => '',
'dateFormat' => 'MDY',
'minYear' => date('Y') - 112,
'maxYear' => date('Y')
));
答案 0 :(得分:0)
dateformat选项允许您配置日期部分。
Used to specify the format of the select inputs for a date-related set of inputs.
Valid values include ‘DMY’, ‘MDY’, ‘YMD’, and ‘NONE’.
[http://book.cakephp.org/view/203/options-dateFormat][1]
答案 1 :(得分:0)
使用css属性
select {
border: 1px solid #BCBCBC;
color: #4C4D51;
font: 14px "Franklin Gothic Book";
text-overflow: "";
}