<select name="tbgid"> <s:iterator value="biglblist" var="bigs"> <!--迭代读取List中的值--> <option value="<s:property value='#bigs.bgid' />"> <s:property value="#bigs.bgname" /> </option> </s:iterator> </select>
注释:
下拉列表中的选项最终绑定到JavaBean上的值是设置在select name="tbgid"上的,即tbgid对应Javabean中的字段
具体参见marryweb项目的二级栏目添加