熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> Java編程 >> Java開源技術 >> 正文

struts使用單選按鈕的三種方式

2022-06-13   來源: Java開源技術 

  struts中使用單選按鈕有三種方式

  使用<html:option>標簽

  <html:select property=city>

  <html:option value=>北京市</html:option>

  <html:option value=>廣州市</html:option>

  <html:option value=>上海市</html:option>

  </html:select>

  使用<html:optionsCollection>標簽

  )在ActionForm中加入字段

  private List cityList=new ArrayList();

  )加入必須的getter方法

  public List getCityList() {

  return cityList;

  }

  )在reset方法內給cityList填充內容

  cityListadd(new LabelValueBean(北京市));

  cityListadd(new LabelValueBean(廣州市 ));

  cityListadd(new LabelValueBean(上海市 ));

  )JSP標簽中使用

  <html:select property=city>

  <html:optionsCollection property=cityList label=label value=value/>

  </html:select>

  使用<html:options>標簽

  <%List cityList=new ArrayList();

  cityListadd(new LabelValueBean(北京市));

  cityListadd(new LabelValueBean(廣州市 ));

  cityListadd(new LabelValueBean(上海市 ));

  requestsetAttribute(listcityList); //必須是request對象

  %>

  <html:select property=city>

  <html:options collection=list labelProperty=label property=value/>

  </html:select>


From:http://tw.wingwit.com/Article/program/Java/ky/201311/28298.html
    推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.