当前位置: 代码迷 >> Java Web开发 >> <html:options>默认选项,该怎么处理
  详细解决方案

<html:options>默认选项,该怎么处理

热度:524   发布时间:2016-04-16 22:03:11.0
<html:options>默认选项
<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>&emsp;

------解决方案--------------------
引用:
用的S标签
<s:select id="subcenter" name="sysUser.suSubcenter.ssId" list="#subcenter" listKey="ssId" listValue="ssName" emptyOption="true" cssClass="tdwidth"></s:select>&emsp;


忘记了
emptyOption="true"  去掉这个  默认就是第一个
------解决方案--------------------
最简单的方法就是换个位置啊。。。。。。。
  相关解决方案