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
设置为默认选择。
答案 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;'));?>