两个效果是一样的.

<label class="col-lg-1 col-md-1 col-xs-12 col-xss-12 xs_Textright md_Textright LabelOnpadding">消息类别:</label>
<div class='col-lg-5 col-md-5 col-xs-12 col-xss-12'>
<form:select path="opinfotype" class="form-control">
<option value=""></option>
<form:options items="${fns:getDictList('OM_MSG_TYPE')}" itemLabel="label" itemValue="value" htmlEscape="false"/>
</form:select>
</div>
<div class='col-lg-5 col-md-5  col-xs-12 col-xss-12'>
<select id="opinfotype" name="opinfotype" class="form-control">
<option value=""></option>
<c:forEach items="${fns:getDictList('OM_MSG_TYPE')}" var="dict">

<option value="${dict.value}">${dict.label}</option>

</c:forEach>
</select>

</div>