1

我想要一个下拉列表,用户可以在其中选择任何 15 分钟增量的小时/分钟值,例如:

  • 12:15
  • 08:45

我怎样才能最好地做到这一点?

4

1 回答 1

3

使用interval选项。从书中:

echo $this->Form->input('Model.time', array('type' => 'time', 'interval' => 15));

书:http ://book.cakephp.org/1.3/en/view/1390/Automagic-Form-Elements

于 2012-05-27T20:07:21.467 回答