设置select下拉菜单的默认选项


set default option for select drop down

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设置为默认选择。

这样就可以了-

<?= 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;'));?>