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

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

?? struts-html-el.tld

?? Apache struts-1.3.10 a stable version
?? TLD
?? 第 1 頁 / 共 5 頁
字號:
<?xml version="1.0" encoding="UTF-8"?>
<!--
    $Id: struts-html-el.tld 657486 2008-05-18 00:53:11Z niallp $

    Licensed to the Apache Software Foundation (ASF) under one or more
    contributor license agreements.  See the NOTICE file distributed with
    this work for additional information regarding copyright ownership.
    The ASF licenses this file to You under the Apache License, Version 2.0
    (the "License"); you may not use this file except in compliance with
    the License.  You may obtain a copy of the License at
   
         http://www.apache.org/licenses/LICENSE-2.0
   
    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
-->
<!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-el</uri>
    <description>
        <![CDATA[
        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.
  Many of the tags in this tag library will throw a
  JspException 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 &lt;%@ page %&gt;
  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
  ]]>
        org.apache.struts.action.EXCEPTION.</description>
    <tag>
        <name>base</name>
        <tag-class>org.apache.strutsel.taglib.html.ELBaseTag</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>
         ]]>
            </description>
        </attribute>
    </tag>
    <tag>
        <name>button</name>
        <tag-class>org.apache.strutsel.taglib.html.ELButtonTag</tag-class>
        <description>
            <![CDATA[
            <p><strong>
            Render A Button Input Field
        </strong></p>
          <p>
                Renders an HTML <code>&lt;input&gt;</code> 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>
                The keyboard character used to move focus immediately to this
                element.
            </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[
                    The servlet context attributes key for the MessageResources
                    instance to use.  If not specified, defaults to the
                    application resources configured for our action servlet.
                
            <dl><dt><b>Since:</b></dt>
            <dd>Struts 1.2.5</dd></dl>
          ]]>
            </description>
        </attribute>
        <attribute>
            <name>dir</name>
            <required>false</required>
            <rtexprvalue>true</rtexprvalue>
            <description>
                <![CDATA[
                <p>The direction for weak/neutral text for this element.</p>
                <dl><dt><b>Since:</b></dt>
                <dd>Struts 1.3.6</dd></dl>
                ]]>
            </description>
        </attribute>
        <attribute>
            <name>disabled</name>
            <required>false</required>
            <rtexprvalue>true</rtexprvalue>
            <description>
                <![CDATA[
          Set to <code>true</code>
         ]]>
            </description>
        </attribute>
        <attribute>
            <name>indexed</name>
            <required>false</required>
            <rtexprvalue>true</rtexprvalue>
            <description>
                <![CDATA[
                Valid only inside of <code>logic-el:iterate</code>
            <code>c:forEach</code>
            <code>true</code>
         ]]>
            </description>
        </attribute>
        <attribute>
            <name>lang</name>
            <required>false</required>
            <rtexprvalue>true</rtexprvalue>
            <description>
                <![CDATA[
                <p>The language code for this element.</p>
                <dl><dt><b>Since:</b></dt>
                <dd>Struts 1.3.6</dd></dl>
                ]]>
            </description>
        </attribute>
        <attribute>
            <name>onblur</name>
            <required>false</required>
            <rtexprvalue>true</rtexprvalue>
            <description>
                JavaScript event handler executed when this element loses
                input
                focus.
            </description>
        </attribute>
        <attribute>
            <name>onchange</name>
            <required>false</required>
            <rtexprvalue>true</rtexprvalue>
            <description>
                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>
                JavaScript event handler executed when this element receives a
                mouse click.
            </description>
        </attribute>
        <attribute>
            <name>ondblclick</name>
            <required>false</required>
            <rtexprvalue>true</rtexprvalue>
            <description>
                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>
                JavaScript event handler executed when this element receives
                input
                focus.
            </description>
        </attribute>
        <attribute>
            <name>onkeydown</name>
            <required>false</required>
            <rtexprvalue>true</rtexprvalue>
            <description>
                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>
                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>
                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>
                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>
                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>
                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>
                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>
                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>
                Name of the request parameter that will be included with this
                submission, set to the specified value.
            </description>
        </attribute>

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
91麻豆精品久久久久蜜臀 | 日韩欧美国产午夜精品| 一本一本久久a久久精品综合麻豆 一本一道波多野结衣一区二区 | 亚洲一区二区三区四区五区中文| 国产精品网站在线观看| 欧美激情中文不卡| 国产精品久久久久久妇女6080| 国产色综合久久| 国产精品白丝在线| 亚洲日本护士毛茸茸| 亚洲人快播电影网| 一区二区三区国产豹纹内裤在线| 亚洲精品乱码久久久久久黑人| 一区二区激情视频| 亚洲高清免费在线| 日韩综合一区二区| 精品一区二区三区免费观看| 狠狠色丁香久久婷婷综合_中| 国产乱码精品1区2区3区| 国产91在线看| 91美女在线视频| 在线观看亚洲成人| 日韩欧美国产一二三区| 国产丝袜欧美中文另类| 亚洲欧洲日韩av| 亚洲激情图片qvod| 日韩成人精品在线| 国产精品18久久久久久久久久久久 | 国产精品区一区二区三| 日韩毛片精品高清免费| 午夜精品123| 国产乱一区二区| 99在线热播精品免费| 欧美日韩五月天| 久久影视一区二区| 亚洲丝袜另类动漫二区| 日韩福利电影在线观看| 国产 欧美在线| 欧美三级日韩三级| 国产日韩三级在线| 亚洲午夜精品网| 国内精品免费在线观看| 91麻豆精东视频| 欧美一级日韩不卡播放免费| 欧美精彩视频一区二区三区| 亚洲成人动漫av| 国产一区二区美女| 在线观看av一区二区| 日韩欧美的一区| 亚洲欧美日本在线| 精品一区二区三区免费| 色悠悠亚洲一区二区| 精品福利一区二区三区| 一区二区三区四区不卡视频| 国产伦精品一区二区三区免费迷| 色婷婷国产精品| 久久综合九色综合欧美就去吻 | 国产激情一区二区三区桃花岛亚洲| 色婷婷亚洲精品| 久久久久国色av免费看影院| 午夜精品久久久久久久99樱桃 | 久久免费看少妇高潮| 一区二区在线电影| 丁香桃色午夜亚洲一区二区三区| 欧美日韩免费高清一区色橹橹 | 国产精品的网站| 麻豆成人av在线| 在线看一区二区| 欧美激情一区二区三区四区| 麻豆高清免费国产一区| 欧美日韩一级大片网址| 国产精品国产三级国产aⅴ入口 | 成人一区二区视频| 日韩欧美你懂的| 亚洲成人tv网| 欧洲精品中文字幕| 成人欧美一区二区三区小说| 国产精品一区二区免费不卡| 日韩免费一区二区| 午夜成人免费电影| 91黄色激情网站| 中文字幕在线观看不卡| 国产精品系列在线播放| 精品盗摄一区二区三区| 日本aⅴ精品一区二区三区 | 亚洲人精品一区| 成人福利视频网站| 国产欧美日韩精品在线| 国产精品资源在线观看| 日韩精品一区在线观看| 免费美女久久99| 7777精品伊人久久久大香线蕉| 亚洲精品免费播放| 一道本成人在线| 日韩美女视频一区二区| 99国产一区二区三精品乱码| 国产精品传媒在线| 91麻豆国产福利在线观看| 综合久久久久久久| 色香色香欲天天天影视综合网| 中文字幕制服丝袜一区二区三区| 国产凹凸在线观看一区二区| 国产午夜亚洲精品羞羞网站| 国产一区二区三区免费| 久久免费看少妇高潮| 春色校园综合激情亚洲| 亚洲国产激情av| 91啪在线观看| 一区二区三区在线高清| 欧美亚洲国产一区二区三区| 亚洲国产成人av网| 日韩午夜小视频| 国产麻豆一精品一av一免费| 欧美激情中文字幕| 91婷婷韩国欧美一区二区| 亚洲精品一二三| 欧美片在线播放| 久久97超碰色| 国产精品久久久久久一区二区三区 | 亚洲国产成人av网| 日韩一区二区电影| 国产麻豆精品视频| 国产精品麻豆一区二区| 91免费在线看| 亚洲午夜视频在线| 欧美一区二区三区免费在线看| 狠狠狠色丁香婷婷综合久久五月| 国产欧美日韩在线| 在线一区二区三区做爰视频网站| 亚洲高清免费视频| 26uuu国产一区二区三区| a级高清视频欧美日韩| 香蕉加勒比综合久久| 3751色影院一区二区三区| 国模一区二区三区白浆| 亚洲视频每日更新| 91精品国产乱码久久蜜臀| 国产成人精品亚洲777人妖| 亚洲综合成人网| 欧美tickling挠脚心丨vk| 99久久综合精品| 日日摸夜夜添夜夜添精品视频 | 免费高清视频精品| 国产精品欧美经典| 7777女厕盗摄久久久| 成人性生交大片免费看中文网站| 亚洲国产精品嫩草影院| 久久久蜜桃精品| 欧洲中文字幕精品| 国产精品一级片| 午夜不卡在线视频| 日本一区二区免费在线观看视频 | 欧美视频精品在线观看| 国产又粗又猛又爽又黄91精品| 国产精品夫妻自拍| 日韩亚洲电影在线| 色女孩综合影院| 国产一区视频在线看| 亚洲无人区一区| 欧美精彩视频一区二区三区| 欧美日韩视频在线观看一区二区三区| 国产精品综合在线视频| 午夜精品久久久久久久蜜桃app| 国产精品素人一区二区| 欧美一区二区在线视频| 色综合网色综合| 国产馆精品极品| 蜜臀av一区二区在线免费观看| 亚洲欧洲韩国日本视频| 欧美精品一区二区三区四区| 欧美亚洲国产怡红院影院| 成人aa视频在线观看| 久久成人18免费观看| 亚洲成在人线在线播放| 专区另类欧美日韩| 日本一二三不卡| 亚洲精品一区在线观看| 欧美乱妇15p| 欧美亚洲国产一区在线观看网站| 成人在线视频首页| 国产乱码精品一区二区三区五月婷| 亚瑟在线精品视频| 亚洲一区视频在线观看视频| 国产精品乱人伦一区二区| 久久综合久色欧美综合狠狠| 91精品国产一区二区三区蜜臀| 欧美色电影在线| 在线视频你懂得一区| 91在线免费视频观看| 不卡视频在线看| 成人自拍视频在线观看| 国产福利91精品| 国产成人精品午夜视频免费| 韩国成人在线视频| 老司机精品视频导航| 紧缚捆绑精品一区二区| 美日韩一区二区| 久久69国产一区二区蜜臀| 看片网站欧美日韩| 九九**精品视频免费播放|