当前位置: 代码迷 >> Web前端 >> 惯用web页面标签使用simple sample
  详细解决方案

惯用web页面标签使用simple sample

热度:758   发布时间:2012-11-25 11:44:31.0
常用web页面标签使用simple sample

<s:if>? 与 <c:if>写法

<s:if test="anrProductQueryBean.type==\"0\"">
    <s:property id="type" value="'Assembly'" ></s:property>
</s:if>
<c:if test="${res.parent != null}">
<span title='<s:property value="#res.materialCode"/>'><label for='roleidBox_<s:property value="#res.bomId"/>'> 
</span>
</c:if>

?s:select标签使用

<s:select name="productQueryBean.type" cssStyle="width:140px" list="typeLV" listKey="value" listValue="label" ></s:select>

?

display标签使用

<input type="hidden" name="action" value="getGraduateSummery" />
<input type="hidden" id="page" name="page" value="${page}" />
    <input type="hidden" id="count" name="count" value="${count}" />
<display:table   
	list="${studentList}" id="row" export="false"
	requestURI="${pageContext.request.contextPath}/studentInfo.do"
	partialList="enable">
	<display:column title="<input type='checkbox' name='selAllCheckBox' onclick='selAll(this);' />" >
	  <input type="checkbox" id="singleBox"  name='singleBox' value="${row.graduateIndex }"/>
	</display:column>
	<display:column title="学籍号" property="studentNo"/>
		<display:setProperty name="paging.banner.placement" value="both"></display:setProperty>
</display:table>

?

  相关解决方案