<select name="channelList" id="channel_${sta.index}" onchange="getChannelCode(this)" style="width:130font-size:11px" ${allot.channel==null?'':'disabled' }>
<option value="${allot.brand.brd_code}">${allot.channel.com_desc}</option>
<s:if test="#allot.brand!=null">
<s:if test="#allot.channel==null">
<s:iterator value="allChannel">
<option value="${com_code }">${com_desc }</option>
</s:iterator>
</s:if>
</s:if>
</select>
struts最大用处是让你方便的mvc。mvc是让你结构清楚,未来的开发中mvc肯定是必须的。任何项目都是如此。如果是简单的项目struts+jdbc直接能解决问题,如果是复杂的企业级应用,可能还要用到spring和hibernate。这两个加上strus就是经典的ssh框架。至于s标签,他只是一个标签而已,当你需要用到struts的特性的时候就申明,如果你不喜欢s,你还可以<%@ taglib prefix="s" uri="struts-tags" >在其中的s改成别的。查询,封装list,放入值栈ActionContext.getContext.put(),或放入作用域里,然后jsp页面迭代 <s:interator value="#list">..........</interator>欢迎分享,转载请注明来源:内存溢出
评论列表(0条)