zoukankan      html  css  js  c++  java
  • struts2学习(9)struts标签2(界面标签、其他标签)

    四、struts2界面标签:              

    五、其他标签:                      

    1.界面标签:

    uiTag.jsp:

    <body>
    <h>界面标签</h>
    <hr/>
    <a href="ui/form.jsp" target="_blank">form标签</a><br/>
    <a href="ui/text.jsp" target="_blank">文本标签</a><br/>
    <a href="ui/radio.jsp" target="_blank">单选标签</a><br/>
    <a href="ui/checkbox.jsp" target="_blank">复选框标签</a><br/>
    <a href="ui/select.jsp" target="_blank">下拉框标签</a><br/>
    </body>
    View Code

    form.jsp:              

    <body>
    <s:form action="hello" method="post" namespace="/foreground">
    </s:form>
    </body>
    View Code

    text.jsp:        

    <body>
    用户名:<s:textfield name="userName"></s:textfield><br/>
    密码:<s:password name="password"></s:password><br/>
    备注:<s:textarea name="desc"></s:textarea><br/>
    </body>
    View Code

    radio.jsp:            

    <body>
    性别:<s:radio list="#{0: '男 ', 1:'女 '}" name="sex" value="0" /> 
    </body>
    View Code

    checkbox.jsp:                  

    <body>
    爱好:<s:checkboxlist list="#{0: '游泳', 1:'唱歌 ',2:'跳舞'}" name="hobby" value="1" /> 
    </body>
    View Code

    select.jsp:                      

    <body>
    爱好:<s:select list="#{0: '游泳', 1:'唱歌 ',2:'跳舞'}" name="hobby" value="1" multiple="true"/> 
    </body>
    View Code

    2. 其他标签:

    otherTag.jsp:

    <body>
    <h>其他标签</h>
    <hr/>
    <a href="other/updownselect.jsp" target="_blank">updownselect标签</a><br/>
    <a href="other/optiontransferselect.jsp" target="_blank">optiontransferselect标签</a><br/>
    </body>
    View Code

    updownselect.jsp:

    <%@ page language="java" contentType="text/html; charset=UTF-8"
        pageEncoding="UTF-8"%>
    <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <%@taglib prefix="s" uri="/struts-tags" %>
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <title>Insert title here</title>
    </head>
    <body>
    <s:updownselect 
        list="#{0:'游泳', 1:'唱歌', 2:'跳舞'}"
        name="hobby" 
        headerKey="-1"
        headerValue="请选择" 
        emptyOption="true"
        allowMoveUp="true" 
        allowMoveDown="true" 
        allowSelectAll="true"
        moveUpLabel="Move Up" 
        moveDownLabel="Move Down"
        selectAllLabel="Select All" /> 
    </body>
    </html>
    View Code

    optiontransferselect.jsp:

    <%@ page language="java" contentType="text/html; charset=UTF-8"
        pageEncoding="UTF-8"%>
    <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <%@taglib prefix="s" uri="/struts-tags" %>
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <title>Insert title here</title>
    </head>
    <body>
    <s:optiontransferselect label="选择你喜欢图书"  
                  name="cnbook" leftTitle="中文图书"  list="{'struts2权威指南','轻量级javaeye 企业应用空实战','ajax讲义'}"
                  doubleName="enBook"  rightTitle="外文图书" doubleList="{'JavaScrip:The definitive Guide','export one-to-one'}"  multiple="true" 
                  addToLeftLabel="向左移动" addToRightLabel="向右移动" addAllToRightLabel="全部右移" addAllToLeftLabel="全部左移"
                   allowSelectAll="true" headerKey="cnKey" headerValue="选择图书" emptyOption="true"   doubleHeaderKey="enKey" 
                   doubleHeaderValue="选择外文图书" doubleMultiple="true" doubleEmptyOption="true"  leftDownLabel="向下移动" 
           rightDownLabel="向下移动" 
           leftUpLabel="向上移动" 
           rightUpLabel="向上移动" >
       </s:optiontransferselect>
    </body>
    </html>
    View Code

  • 相关阅读:
    MyEclipse Ctrl+F搜索框太小
    SqlServer2012评估期已过问题
    $("#form_iframe").contents().find('.nav-tabs').children().eq(2).hide();
    数字格式化
    equals和==的区别
    静态代码块
    this调用有参构造方法
    正则表达式
    日期和时间字符串格式化
    Legacy autograd function with non-static forward method is deprecated and will be removed in 1.3.
  • 原文地址:https://www.cnblogs.com/tenWood/p/7103534.html
Copyright © 2011-2022 走看看