cakephp1.3中help form的一个小问题

如果我们在模版里这么干

<?php echo $form->input('last_sold_date',array('autocomplete'=>'off','label'=>false)); ?>

cake会非常‘聪明’的生成三个select的 html标签,内容分别是year,month,day

如果让他不自动转换,只需加上'type'=>'text'

<?php echo $form->input('last_sold_date',array('autocomplete'=>'off','label'=>false,'type'=>'text')); ?>

另外,经测试在cakephp2版本中无此问题。

posted @ 2013-09-12 22:13  飞凡123  阅读(208)  评论(0编辑  收藏  举报