<html:select property="allocType" styleId="allocType" onchange="showInfo()" style="width:100px">
<html:options property="allocTypeValueList" labelProperty="allocTypeLabelList" />
</html:select>
这个怎么让它进入页面时默认选择第一个啊???现在显示的是下拉框里的第二个,allocTypeValueList,allocTypeLabelList这两个都是后台传过来的list
------解决方案--------------------
自己 html 拼option 可以不?
你这个是strut1 标签吧
------解决方案--------------------
<html:select property="Name" name="**Form" value="admin" >
<html:options collection="list" property="userName" labelProperty="userName"/>
</html:select>
当userName=admin时,默认selected
参考这个
------解决方案--------------------
用的S标签
<s:select id="subcenter" name="sysUser.suSubcenter.ssId" list="#subcenter" listKey="ssId" listValue="ssName" emptyOption="true" cssClass="tdwidth"></s:select> 
------解决方案--------------------
忘记了
emptyOption="true" 去掉这个 默认就是第一个
------解决方案--------------------
最简单的方法就是换个位置啊。。。。。。。