常用标签的用法

1. <s:iterater>

<table>
<s:iterator value = "jobLevelList">
<tr>
<td><s:text name="jobLevelId"></s:text></td>
</tr>
</s:iterator>

 

2. <s:if>

<input type="checkbox" name="jobLevel"
  <s:iterator value="jobLevel" var="jobLevel">
    <s:if test="#jobLevelList.jobLevelId==#jobLevel">
      checked = "checked"
    </s:if>
  </s:iterator> 
/>

<s:if test="editOrAdd=='add'">

        <s:if test='is=="Y"'>
        <span class="must">*</span>
        </s:if>

 

<s:set var="foo" value="'a-style'"/>
<s:textfield cssClass="%{#foo}"/>

 

3.<s:textfield>

Action 中的对象subsidyBean通过如下方式显示它的属性

<s:textfield id="guaranteeAmountStr_id"
            name="guaranteeAmountStr" value="%{subsidyBean.guaranteeAmount}"
            maxlength="11" />

 

4. <s:fielderror>

校验用

jsp中加入如下标签:

<s:fielderror fieldName="errorMsg"/>

 

action中的方法前面加validate就是验证方法

public void validateMethod()throws Exception{

    addFieldError( "errorMsg", "错误信息", "")));

}

 

action中配置input类型的result

你可能感兴趣的:(标签)