请问一点重置按钮显示———请选择———??
 <logic:notPresent name="rzlist">
      <html:select  property="RZKMID" styleClass="xlcd">
       <options>--请选择--</options>
      </html:select>
      </logic:notPresent>
      <logic:present name="rzlist">
      <html:select property="RZKMID" styleClass="xlcd">
       <html:options collection="rzlist" property="CLASST_ID" labelProperty="TITLE"/> 
      </html:select>
  </logic:present>     

解决方案 »

  1.   

    用html表单中的html标签rest按钮,会字段reset表单的;
    注意页面最好也是html标签的
    <html:html>
    <html:reset></html:reset>
    </html:html>
      

  2.   

    document.getElementById("selectId").selectedIndex=0给select加个id="selectId" 进行控制
      

  3.   


    lz,struts标签的property就是id。运行后转换成html就是id了
    <html:select property="sid" ></html:select>