【发布时间】:2013-04-28 17:05:53
【问题描述】:
我将FormHelper::dateTime 用于DATE 格式。
有谁知道如何在天、月和年之间添加其他类?
【问题讨论】:
标签: cakephp html-helper
我将FormHelper::dateTime 用于DATE 格式。
有谁知道如何在天、月和年之间添加其他类?
【问题讨论】:
标签: cakephp html-helper
下面的 cakephp 代码将生成具有给定默认值的相同下拉框,并且发布数据将相同:
echo $this->Form->day('Profile.dob', array('empty'=>'Day','class' => 'cls-day'));
echo $this->Form->month('Profile.dob', array('empty'=>'Month','class' => 'cls-month'));
echo $this->Form->year('Profile.dob', 1950, date('Y'),array('empty'=>'Year','class' => 'cls-year'));
【讨论】: