设置选择下拉列表的默认选项

时间:2014-03-20 17:41:32

标签: php kohana

views.php

<?= Form::select('em'.$user, array('1' => 'option1', '2' => 'option2'), '', array('class'=>"select-input feed-select-dropdown myselect", 'id'=>'em'.$user, 'style'=>'width:124px; margin-left:438px;'));?> 

在此选择下拉列表中,如何将option2设置为默认选择。

1 个答案:

答案 0 :(得分:0)

这样做 -

<?= Form::select('em'.$user, array('1' => 'option1', '2' => 'option2'),'2', array('class'=>"select-input feed-select-dropdown myselect", 'id'=>'em'.$user, 'style'=>'width:124px; margin-left:438px;'));?>