亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? struts-html.tld

?? 整合struts+velocity模板語言
?? TLD
?? 第 1 頁 / 共 5 頁
字號:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE taglib
        PUBLIC "-//Sun Microsystems, Inc.//DTD JSP Tag Library 1.2//EN"
        "http://java.sun.com/dtd/web-jsptaglibrary_1_2.dtd">
<taglib>
    <tlib-version>1.3</tlib-version>
    <jsp-version>1.2</jsp-version>
    <short-name>html</short-name>
    <uri>http://struts.apache.org/tags-html</uri>
    <description>
        <![CDATA[
  <p>
        This taglib contains tags used to create struts
        input forms, as well as other tags generally useful
                in the creation of HTML-based user interfaces.
  </p>

  <p>Many of the tags in this tag library will throw a
  <code>JspException</code> at runtime when they are utilized incorrectly
  (such as when you specify an invalid combination of tag attributes).  JSP
  allows you to declare an "error page" in the <code>&lt;%@ page %&gt;</code>
  directive.  If you wish to process the actual exception that caused the
  problem, it is passed to the error page as a request attribute under key
  <code>org.apache.struts.action.EXCEPTION</code>.</p>
  ]]>
    </description>
    <tag>
        <name>base</name>
        <tag-class>org.apache.struts.taglib.html.BaseTag</tag-class>
        <body-content>empty</body-content>
        <description>
            <![CDATA[
            <p><strong>Render an HTML <code>&lt;base&gt;</code> Element</strong></p>
          
          <p>Renders an HTML <code>&lt;base&gt;</code> element with an
          <code>href</code> attribute pointing to the absolute location of
          the enclosing JSP page.  This tag is valid only when nested inside
          an HTML <code>&lt;head&gt;</code> element.</p>

          <p>This tag is useful because it allows you to use relative URL
          references in the page that are calculated based on the URL of the
          page itself, rather than the URL to which the most recent submit
          took place (which is where the browser would normally resolve
          relative references against).</p>
          ]]>
        </description>
        <attribute>
            <name>target</name>
            <required>false</required>
            <rtexprvalue>true</rtexprvalue>
            <description>
                <![CDATA[
              <p>The window target for this base reference.</p>
            ]]>
            </description>
        </attribute>
        <attribute>
            <name>server</name>
            <required>false</required>
            <rtexprvalue>true</rtexprvalue>
            <description>
                <![CDATA[
              <p>The server name to use instead of request.getServerName().</p>
            ]]>
            </description>
        </attribute>
        <attribute>
            <name>ref</name>
            <required>false</required>
            <rtexprvalue>true</rtexprvalue>
            <description>
                <![CDATA[
              <p>The reference from which the base uri will created.  Possible values are:
              </p>
              <ul>
                <li><code>page</code> - The base uri will be the jsp page location. (default)</li>
                <li><code>site</code> - The base uri will be the application context path.</li>
              </ul>

              <dl><dt><b>Since:</b></dt>
              <dd>Struts 1.3</dd></dl>

            ]]>
            </description>
        </attribute>
    </tag>
    <tag>
        <name>button</name>
        <tag-class>org.apache.struts.taglib.html.ButtonTag</tag-class>
        <description>
            <![CDATA[
            <p><strong>Render A Button Input Field</strong></p>
          
            <p>
                Renders an HTML &lt;input&gt; element of type
                <code>button</code>, populated from the specified value or the
                content of this tag body. This tag is only valid when nested
                inside a form tag body.
            </p>
            <p>
             If a graphical button is needed (a button with an image), then the
             <a href="#image"><code>image</code></a> tag is more appropriate.
            </p>
        ]]>
        </description>
        <attribute>
            <name>accesskey</name>
            <required>false</required>
            <rtexprvalue>true</rtexprvalue>
            <description>
                <![CDATA[
                <p>The keyboard character used to move focus immediately to this
                element.</p>
            ]]>
            </description>
        </attribute>
        <attribute>
            <name>alt</name>
            <required>false</required>
            <rtexprvalue>true</rtexprvalue>
            <description>
                <![CDATA[
                <p>The alternate text for this element.</p>
                ]]>
            </description>
        </attribute>
        <attribute>
            <name>altKey</name>
            <required>false</required>
            <rtexprvalue>true</rtexprvalue>
            <description>
                <![CDATA[
                <p>The message resources key of the alternate text for this
                element.</p>
                ]]>
            </description>
        </attribute>
        <attribute>
            <name>bundle</name>
            <required>false</required>
            <rtexprvalue>true</rtexprvalue>
            <description>
                <![CDATA[
                    <p>The servlet context attributes key for the MessageResources
                    instance to use.  If not specified, defaults to the
                    application resources configured for our action servlet.</p>
                
            <dl><dt><b>Since:</b></dt>
            <dd>Struts 1.2.5</dd></dl>
          ]]>
            </description>
        </attribute>
        <attribute>
            <name>disabled</name>
            <required>false</required>
            <rtexprvalue>true</rtexprvalue>
            <type>boolean</type>
            <description>
                <![CDATA[
          <p>Set to <code>true</code> if this input field should be
          disabled.</p>
          ]]>
            </description>
        </attribute>
        <attribute>
            <name>indexed</name>
            <required>false</required>
            <rtexprvalue>true</rtexprvalue>
            <type>boolean</type>
            <description>
                <![CDATA[
                <p>Valid only inside of <code>logic:iterate</code> tag.
                If <code>true</code> then name of the html tag will be rendered as
                "propertyName[34]". Number in brackets will be generated for
                every iteration and taken from ancestor logic:iterate tag.</p>
            ]]>
            </description>
        </attribute>
        <attribute>
            <name>onblur</name>
            <required>false</required>
            <rtexprvalue>true</rtexprvalue>
            <description>
                <![CDATA[
                JavaScript event handler executed when this element loses input
                focus.
            ]]>
            </description>
        </attribute>
        <attribute>
            <name>onchange</name>
            <required>false</required>
            <rtexprvalue>true</rtexprvalue>
            <description>
                <![CDATA[
                JavaScript event handler executed when this element loses input
                focus and its value has changed.
            ]]>
            </description>
        </attribute>
        <attribute>
            <name>onclick</name>
            <required>false</required>
            <rtexprvalue>true</rtexprvalue>
            <description>
                <![CDATA[
                JavaScript event handler executed when this element receives a
                mouse click.
            ]]>
            </description>
        </attribute>
        <attribute>
            <name>ondblclick</name>
            <required>false</required>
            <rtexprvalue>true</rtexprvalue>
            <description>
                <![CDATA[
                JavaScript event handler executed when this element receives a
                mouse double click.
            ]]>
            </description>
        </attribute>
        <attribute>
            <name>onfocus</name>
            <required>false</required>
            <rtexprvalue>true</rtexprvalue>
            <description>
                <![CDATA[
                JavaScript event handler executed when this element receives input
                focus.
            ]]>
            </description>
        </attribute>
        <attribute>
            <name>onkeydown</name>
            <required>false</required>
            <rtexprvalue>true</rtexprvalue>
            <description>
                <![CDATA[
                JavaScript event handler executed when this element has focus and a
                key is depressed.
            ]]>
            </description>
        </attribute>
        <attribute>
            <name>onkeypress</name>
            <required>false</required>
            <rtexprvalue>true</rtexprvalue>
            <description>
                <![CDATA[
                JavaScript event handler executed when this element has focus and a
                key is depressed and released.
            ]]>
            </description>
        </attribute>
        <attribute>
            <name>onkeyup</name>
            <required>false</required>
            <rtexprvalue>true</rtexprvalue>
            <description>
                <![CDATA[
                JavaScript event handler executed when this element has focus and a
                key is released.
            ]]>
            </description>
        </attribute>
        <attribute>
            <name>onmousedown</name>
            <required>false</required>
            <rtexprvalue>true</rtexprvalue>
            <description>
                <![CDATA[
                JavaScript event handler executed when this element is under the mouse
                pointer and a mouse button is depressed.
            ]]>
            </description>
        </attribute>
        <attribute>
            <name>onmousemove</name>
            <required>false</required>
            <rtexprvalue>true</rtexprvalue>
            <description>
                <![CDATA[
                JavaScript event handler executed when this element is under the
                mouse pointer and the pointer is moved.
            ]]>
            </description>
        </attribute>
        <attribute>
            <name>onmouseout</name>
            <required>false</required>
            <rtexprvalue>true</rtexprvalue>
            <description>
                <![CDATA[
                JavaScript event handler executed when this element was under the
                mouse pointer but the pointer was moved outside the element.
            ]]>
            </description>
        </attribute>
        <attribute>
            <name>onmouseover</name>
            <required>false</required>
            <rtexprvalue>true</rtexprvalue>
            <description>
                <![CDATA[
                JavaScript event handler executed when this element was not under
                the mouse pointer but the pointer is moved inside the element.
            ]]>
            </description>
        </attribute>
        <attribute>
            <name>onmouseup</name>
            <required>false</required>
            <rtexprvalue>true</rtexprvalue>
            <description>
                <![CDATA[
                JavaScript event handler executed when this element is under the
                mouse pointer and a mouse button is released.
            ]]>
            </description>
        </attribute>
        <attribute>
            <name>property</name>
            <required>true</required>
            <rtexprvalue>true</rtexprvalue>
            <description>
                <![CDATA[
                Name of the request parameter that will be included with this
                submission, set to the specified value.
            ]]>
            </description>
        </attribute>
        <attribute>
            <name>style</name>
            <required>false</required>
            <rtexprvalue>true</rtexprvalue>
            <description>
                <![CDATA[
                CSS styles to be applied to this HTML element.
            ]]>
            </description>
        </attribute>
        <attribute>
            <name>styleClass</name>
            <required>false</required>
            <rtexprvalue>true</rtexprvalue>
            <description>
                <![CDATA[

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产精品综合网| 日韩成人免费看| 成人ar影院免费观看视频| 久久精品视频在线看| 成人高清视频在线| 亚洲欧美日韩国产手机在线 | 亚洲国产va精品久久久不卡综合| 97精品电影院| 午夜精品久久久久久久99樱桃| 91麻豆精品国产91久久久久久 | 久久久国产精品午夜一区ai换脸| 国产凹凸在线观看一区二区| 亚洲男同1069视频| 欧美一区二区三区四区久久| 国产精品18久久久久久久网站| 国产精品看片你懂得| 欧美色成人综合| 国产一区二区精品久久99| 日韩美女视频19| 91精选在线观看| 丰满放荡岳乱妇91ww| 一区二区三区高清| 日韩欧美久久一区| 99视频有精品| 麻豆成人综合网| 国产精品灌醉下药二区| 91精品国产色综合久久| 成人av网在线| 蜜桃91丨九色丨蝌蚪91桃色| 国产精品视频九色porn| 欧美电影在哪看比较好| 成人avav影音| 久久国产精品区| 亚洲一区二区三区四区不卡| 精品不卡在线视频| 欧美午夜片在线看| 成人av中文字幕| 久久国产精品露脸对白| 亚洲成人午夜影院| 国产精品你懂的在线| 日韩三级.com| 欧美在线观看视频一区二区| 国产精品18久久久久久久网站| 日韩高清一区二区| 亚洲三级电影网站| 中文字幕欧美激情一区| 日韩一区二区三区电影在线观看| 91小视频免费看| 国产成人h网站| 久久97超碰色| 亚洲一二三区视频在线观看| 国产精品日产欧美久久久久| 精品少妇一区二区三区在线视频| 欧美伊人久久久久久久久影院| 成人免费观看视频| 国产一区视频导航| 美腿丝袜亚洲一区| 日韩 欧美一区二区三区| 亚洲黄色av一区| 亚洲女同一区二区| 日韩美女啊v在线免费观看| 日本一区二区三区四区| 久久综合狠狠综合久久综合88| 51精品久久久久久久蜜臀| 在线国产亚洲欧美| 色综合天天综合在线视频| 成人性生交大片免费看视频在线 | 欧美电影免费观看高清完整版在线观看 | 91麻豆国产香蕉久久精品| 国产酒店精品激情| 国产尤物一区二区在线| 日日夜夜精品视频免费| 午夜精品久久久久久久| 五月天欧美精品| 日韩和欧美一区二区三区| 午夜精品久久久久久| 婷婷开心久久网| 婷婷国产在线综合| 亚洲成人av一区二区三区| 婷婷综合另类小说色区| 五月天一区二区三区| 日本美女一区二区三区| 免费日本视频一区| 久久99精品国产.久久久久| 国内成+人亚洲+欧美+综合在线| 国精产品一区一区三区mba桃花| 精品无码三级在线观看视频| 国产乱色国产精品免费视频| 国产成人综合在线观看| 国产99精品在线观看| 白白色 亚洲乱淫| av电影一区二区| 色狠狠一区二区| 在线精品国精品国产尤物884a| 欧美日韩三级在线| 欧美一级日韩不卡播放免费| 精品久久99ma| 国产精品丝袜91| 亚洲午夜国产一区99re久久| 日本不卡的三区四区五区| 国产一区在线观看视频| 99精品视频一区二区| 欧美日韩国产免费| 久久综合一区二区| 亚洲视频免费在线| 蜜桃av一区二区三区| 成人av在线一区二区| 欧美日韩一区二区在线观看视频| 日韩免费电影一区| 国产精品不卡视频| 亚洲综合成人在线视频| 久久成人免费日本黄色| 99精品欧美一区二区三区小说| 欧美久久免费观看| 国产情人综合久久777777| 亚洲一区二区三区三| 国产乱码精品一区二区三| 日本韩国精品一区二区在线观看| 欧美一级电影网站| 成人欧美一区二区三区黑人麻豆 | 亚洲婷婷综合久久一本伊一区| 日韩中文字幕区一区有砖一区| 国产精品91xxx| 91精品国产综合久久精品| 中文字幕不卡在线| 日韩电影一区二区三区四区| 成人sese在线| 久久久噜噜噜久噜久久综合| 亚洲成人自拍一区| 白白色 亚洲乱淫| 欧美成人bangbros| 亚洲综合丝袜美腿| 丁香婷婷综合色啪| 日韩精品综合一本久道在线视频| 亚洲猫色日本管| 成人午夜私人影院| 精品人在线二区三区| 亚洲一区二区不卡免费| 99久久久久免费精品国产| 久久综合九色综合欧美就去吻| 日本亚洲电影天堂| 在线看不卡av| 亚洲三级在线看| kk眼镜猥琐国模调教系列一区二区| 精品国产一区二区三区忘忧草| 午夜电影一区二区| 日本韩国欧美三级| 亚洲欧美激情一区二区| 粉嫩高潮美女一区二区三区| 精品国产一区二区三区av性色| 亚洲成人免费av| 欧美午夜电影在线播放| 亚洲欧美日本在线| www.日韩大片| 国产精品久99| www.色综合.com| 中文字幕中文乱码欧美一区二区| 国产a久久麻豆| 中文字幕+乱码+中文字幕一区| 国产在线视频精品一区| 精品国产91乱码一区二区三区| 轻轻草成人在线| 欧美一级欧美一级在线播放| 三级欧美韩日大片在线看| 欧美高清性hdvideosex| 男女男精品视频网| 日韩美一区二区三区| 蜜臀精品久久久久久蜜臀 | 亚洲欧美综合另类在线卡通| 国产不卡免费视频| 亚洲欧洲性图库| 91久久精品午夜一区二区| 亚洲亚洲精品在线观看| 欧美二区在线观看| 精品亚洲国产成人av制服丝袜| 精品国产电影一区二区| 国产999精品久久久久久绿帽| 国产精品午夜在线观看| 一本大道久久精品懂色aⅴ| 亚洲五码中文字幕| 91精品国产综合久久精品app| 麻豆国产精品视频| 国产色产综合产在线视频| kk眼镜猥琐国模调教系列一区二区| 亚洲欧美日本在线| 6080yy午夜一二三区久久| 久久草av在线| 中文字幕乱码日本亚洲一区二区| 91麻豆成人久久精品二区三区| 亚洲午夜视频在线| 日韩三级视频中文字幕| 成人av影视在线观看| 午夜a成v人精品| 2024国产精品| 日本韩国欧美一区| 久久国产麻豆精品| 亚洲免费视频成人| 欧美va亚洲va| av电影天堂一区二区在线观看| 丝袜脚交一区二区|