`
spring028
  • 浏览: 44678 次
  • 性别: Icon_minigender_1
  • 来自: 深圳
社区版块
存档分类
最新评论

使用<html:option>标签

阅读更多

1.使用<html:option>标签

<!----> <html:select property="city"> <html:option value="010">北京市</html:option> <html:option value="020">广州市</html:option> <html:option value="021">上海市</html:option> </html:select>

 

2.使用<html:optionsCollection>标签
 1)在ActionForm中加入字段
     private List cityList=new ArrayList();
 2)加入必须的getter方法
 public List getCityList() {
  return cityList;
 }
 3)在reset方法内给cityList填充内容
     cityList.add(new LabelValueBean("北京市","010"));
     cityList.add(new LabelValueBean("广州市", "020"));
     cityList.add(new LabelValueBean("上海市", "021"));
 4)JSP标签中使用
 <html:select property="city2">
  <html:optionsCollection property="cityList" label="label" value="value"/>
 </html:select>

3.使用<html:options>标签

<!----> <%List cityList=new ArrayList(); cityList.add(new LabelValueBean("北京市","010")); cityList.add(new LabelValueBean("广州市", "020")); cityList.add(new LabelValueBean("上海市", "021")); request.setAttribute("list",cityList); //必须是request对象 %> <html:select property="city3"> <html:options collection="list" labelProperty="label" property="value"/> </html:select>
分享到:
评论

相关推荐

    <html:select>: 选择默认值

    `&lt;html:select&gt;`通常与`&lt;html:option&gt;`标签一起使用,后者用于定义每个可选项。 #### 二、设置默认选中的选项 为了设置`&lt;html:select&gt;`中的默认选中项,可以通过以下两种方式实现: 1. **通过`&lt;html:option&gt;`标签...

    jsp中htmlselect标签的用法

    &lt;html:option value="1"&gt;&lt;bean:write name="dept" property="name"/&gt;&lt;/html:option&gt; &lt;/logic:iterate&gt; &lt;/html:select&gt; ``` 这段代码中,`logic:iterate`标签用于遍历`depts`集合,`bean:write`则用于输出集合中每...

    用jquery获取select标签中选中的option值及文本的示例

    - 示例中提到当option元素没有value属性时(如&lt;option&gt;cc&lt;/option&gt;),使用.val()方法获取的是option内的文本值,而不是value属性的值。这是因为.val()方法在没有指定value的情况下,返回的是被选中的option元素的...

    jspHTML标签库

    `&lt;html:options&gt;`、`&lt;html:option&gt;`用于创建下拉列表,`&lt;html:table&gt;`、`&lt;html:tr&gt;`、`&lt;html:td&gt;`则用于构建表格。例如: ```jsp &lt;html:select property="color"&gt; &lt;html:option value="red"&gt;Red&lt;/html:option&gt; ...

    struts操作select标签实例

    &lt;html:option value="Option1"&gt;Option 1&lt;/html:option&gt; &lt;html:option value="Option2"&gt;Option 2&lt;/html:option&gt; &lt;html:option value="Option3"&gt;Option 3&lt;/html:option&gt; &lt;/html:select&gt; ``` 在这里,`property`属性...

    Struts标签的使用说明

    此标签可以包含多个`&lt;html:option&gt;`或`&lt;html:options&gt;`标签。示例如下: ```xml &lt;html:select property="countType_Id"&gt; &lt;!-- 多个 &lt;html:option&gt; 或 &lt;html:options&gt; 标签 --&gt; &lt;/html:select&gt; ``` ### 5. `...

    HTML常用标签库及演示实例

    6. `&lt;html:select&gt;`和`&lt;html:option&gt;`标签: 这两个标签组合创建下拉选择列表。`&lt;html:select&gt;`定义列表,`&lt;html:option&gt;`定义选项。例如,创建一个包含城市选择的列表: ```html &lt;html:select property="city"&gt; ...

    HTML中的select标签如何使用.docx

    在HTML中,`&lt;select&gt;`标签通常与`&lt;option&gt;`标签配合使用,用于创建下拉列表。下面将详细介绍`&lt;select&gt;`标签的用法及其相关属性。 1. **基本用法** 创建一个简单的`&lt;select&gt;`标签,需要在`&lt;select&gt;`标签内部包含一...

    HTML常用标签.pdf

    14. &lt;hr&gt;:&lt;hr&gt; 标签在 HTML 页面中创建一条水平线。 15. &lt;center&gt;:对其所包括的文本进行水平居中。 16. &lt;a&gt;:&lt;a&gt; 标签可定义锚。锚(anchor) 有两种用法:通过使用 href 属性,创建指向另外一个文档的链接(或...

    Struts1.x HTML标签库

    6. `&lt;html:select&gt;`和`&lt;html:option&gt;`标签: `&lt;html:select&gt;`用于创建下拉选择列表,`&lt;html:option&gt;`则用于定义下拉列表中的选项。`&lt;html:select&gt;`的`property`属性同样与ActionForm对象的属性关联,而`...

    struts1_标签

    `&lt;html:select&gt;`配合`&lt;html:option&gt;`用于创建下拉列表。 Bean标签库则是为了方便访问和操作JavaBean中的属性。通过`&lt;bean:define&gt;`可以定义一个变量,`&lt;bean:write&gt;`用来输出JavaBean的属性值,`&lt;bean:include&gt;`...

    struts标签-HTML标签笔记

    下面详细介绍几种常用的HTML标签: ##### 2.1 `&lt;html:form&gt;` 标签 - **功能**:该标签用于定义HTML表单。 - **示例**: ```xml &lt;html:form action="/submit" method="post"&gt; ... &lt;/html:form&gt; ``` - **关键...

    struts标签库使用

    例如,可以使用`&lt;html:form&gt;`标签的`validator="true"`属性启用校验,并通过`&lt;html:messages&gt;`显示验证错误。 5. **国际化** 使用`&lt;bean:message&gt;`和`&lt;fmt:message&gt;`标签可以实现国际化。这些标签从资源文件中获取...

    struts html标签例子

    5. `&lt;html:radio&gt;`和`&lt;html:checkbox&gt;`:分别用于创建单选按钮和复选框,通常配合`&lt;html:group&gt;`使用,以便于处理一组相关的选择项。`name`属性定义了这些按钮或复选框共享的名称,`value`属性指定了提交时的值。 6...

    Struts 中 Html 标签库 的用法(第二组标签,与Form相关的标签 ).rar

    6. `&lt;html:select&gt;`、`&lt;html:option&gt;`和`&lt;html:optionsCollection&gt;`标签:`&lt;html:select&gt;`创建下拉选择框`&lt;select&gt;`,`&lt;html:option&gt;`定义选择项,`&lt;html:optionsCollection&gt;`则可以方便地从ActionForm的集合属性中...

    htmlSelect.txt

    ### 关于 `&lt;html:select&gt;`、`&lt;html:option&gt;`、`&lt;html:options&gt;` 和 `&lt;html:optionsCollection&gt;` 的详细解析 #### `&lt;html:select&gt;` 标签 `&lt;html:select&gt;` 是一个用于生成 HTML `&lt;select&gt;` 元素的标签。在 Struts 1.x...

    spring mvc标签使用指南

    **option标签** `&lt;form:option&gt;`用于创建下拉选项,如上例所示,用于填充`&lt;form:select&gt;`。 113.9.11. **options标签** `&lt;form:options&gt;`用于根据给定的列表或映射创建多个`&lt;form:option&gt;`标签,如上例所示。 113...

    Struts 中用Html 标签库的用法(第一部分).rar

    使用`&lt;html:image&gt;`标签可以创建一个图像作为提交按钮: ```jsp &lt;html:image property="submit" src="/images/submit.png" alt="Submit" /&gt; ``` 10. **自定义标签** Struts还允许开发者创建自定义标签,以满足...

    js中使用标签

    在本例中,使用的标签来自JSP(JavaServer Pages)环境,例如`&lt;c:forEach&gt;`和`&lt;c:out&gt;`等。 #### 示例代码分析 接下来,我们将深入分析给定的部分内容,了解其中涉及的关键技术和实现方式。 ```javascript ...

Global site tag (gtag.js) - Google Analytics