0

我在使用 cakephp 输入类型日期时遇到问题。

我怎样才能使十二月到Dec,一月到Jan等等?

我有这个代码:

$this->Form->input('Profile.birthday', array(
    'label' => '', 
    'dateFormat' => 'MDY', 
    'minYear' => date('Y') - 112, 
    'maxYear' => date('Y')
));
4

2 回答 2

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]
于 2012-07-23T07:17:07.667 回答
-1

使用 CSS 属性

select {
    border: 1px solid #BCBCBC;  
    color: #4C4D51;   
    font: 14px "Franklin Gothic Book";
    text-overflow: "";
}
于 2014-05-03T13:07:34.693 回答