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

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

?? struts-logic-el.tld

?? structs源碼
?? TLD
?? 第 1 頁 / 共 4 頁
字號:
        <attribute>
            <name>type</name>
            <required>false</required>
            <rtexprvalue>true</rtexprvalue>
            <description>
                <![CDATA[
            <p>Fully qualified Java class name of the element to be exposed through
      the JSP bean named from the <code>id</code> attribute.  If not present,
      no type conversions will be performed.  NOTE:  The actual elements of
      the collection must be assignment-compatible with this class, or a
      request time ClassCastException will occur.</p>
         ]]>
            </description>
        </attribute>
    </tag>
    <tag>
        <name>match</name>
        <tag-class>org.apache.strutsel.taglib.logic.ELMatchTag</tag-class>
        <body-content>JSP</body-content>
        <description>
            <![CDATA[
            <p><strong>
    Evaluate the nested body content of this tag if the specified value
    is an appropriate substring of the requested variable.
    </strong></p>
          <p>Matches the variable specified by one of the selector attributes
    (as a String) against the specified constant value.  If the value is
    a substring (appropriately limited by the <code>location</code>
    attribute), the nested body content of this tag is evaluated.</p>
      ]]>
        </description>
        <attribute>
            <name>cookie</name>
            <required>false</required>
            <rtexprvalue>true</rtexprvalue>
            <description>
                <![CDATA[
            <p>The variable to be matched is the value of the cookie whose
      name is specified by this attribute.</p>
         ]]>
            </description>
        </attribute>
        <attribute>
            <name>expr</name>
            <required>false</required>
            <rtexprvalue>true</rtexprvalue>
            <description>
                <![CDATA[
            <p>
       A specific value to be compared with, either a static value, or an EL
       value.
      </p>
         ]]>
            </description>
        </attribute>
        <attribute>
            <name>header</name>
            <required>false</required>
            <rtexprvalue>true</rtexprvalue>
            <description>
                <![CDATA[
            <p>The variable to be matched is the value of the header whose
      name is specified by this attribute.  The name match is performed
      in a case insensitive manner.</p>
         ]]>
            </description>
        </attribute>
        <attribute>
            <name>location</name>
            <required>false</required>
            <rtexprvalue>true</rtexprvalue>
            <description>
                <![CDATA[
            <p>If not specified, a match between the variable and the value may
      occur at any position within the variable string.  If specified, the
      match must occur at the specified location (either <code>start</code>
      or <code>end</code>) of the variable string.</p>
         ]]>
            </description>
        </attribute>
        <attribute>
            <name>name</name>
            <required>false</required>
            <rtexprvalue>true</rtexprvalue>
            <description>
                <![CDATA[
            <p>The variable to be matched is the JSP bean specified by this
      attribute, if <code>property</code> is not specified, or the value
      of the specified property of this bean, if <code>property</code>
      is specified.</p>
         ]]>
            </description>
        </attribute>
        <attribute>
            <name>parameter</name>
            <required>false</required>
            <rtexprvalue>true</rtexprvalue>
            <description>
                <![CDATA[
            <p>The variable to be matched is the first, or only, value of the
      request parameter specified by this attribute.</p>
         ]]>
            </description>
        </attribute>
        <attribute>
            <name>property</name>
            <required>false</required>
            <rtexprvalue>true</rtexprvalue>
            <description>
                <![CDATA[
            <p>The variable to be matched is the property (of the bean specified
      by the <code>name</code> attribute) specified by this attribute.
      The property reference can be simple, nested, and/or indexed.</p>
         ]]>
            </description>
        </attribute>
        <attribute>
            <name>scope</name>
            <required>false</required>
            <rtexprvalue>true</rtexprvalue>
            <description>
                <![CDATA[
            <p>The bean scope within which to search for the bean named by the
      <code>name</code> property, or "any scope" if not specified.</p>
         ]]>
            </description>
        </attribute>
        <attribute>
            <name>value</name>
            <required>true</required>
            <rtexprvalue>true</rtexprvalue>
            <description>
                <![CDATA[
            <p>The constant value which is checked for existence as a substring
      of the specified variable.</p>
         ]]>
            </description>
        </attribute>
    </tag>
    <tag>
        <name>messagesNotPresent</name>
        <tag-class>
            org.apache.strutsel.taglib.logic.ELMessagesNotPresentTag</tag-class>
        <body-content>JSP</body-content>
        <description>
            <![CDATA[
            <p><strong>
    Generate the nested body content of this tag if the specified
    message is not present in this request.
    </strong></p>
          <p>Evaluates the nested body content of this tag if
       an <code>ActionMessages</code>
       object, <code>ActionErrors</code> object, a String,
       or a String array is not in request scope.  If
       such a bean is not found, nothing will be rendered.
    </p>
            <dl><dt><b>Since:</b></dt>
            <dd>Struts 1.1</dd></dl>
          ]]>
        </description>
        <attribute>
            <name>name</name>
            <required>false</required>
            <rtexprvalue>true</rtexprvalue>
            <description>
                <![CDATA[
            <p>The parameter key to retrieve the message from request scope.</p>
         ]]>
            </description>
        </attribute>
        <attribute>
            <name>property</name>
            <required>false</required>
            <rtexprvalue>true</rtexprvalue>
            <description>
                <![CDATA[
            <p>Name of the property for which messages should be
         retrieved.  If not specified, all messages (regardless
         of property) are retrieved.
      </p>
         ]]>
            </description>
        </attribute>
        <attribute>
            <name>message</name>
            <required>false</required>
            <rtexprvalue>true</rtexprvalue>
            <description>
                <![CDATA[
            <p>By default the tag will retrieve the request scope bean it will
         iterate over from the <code>Action.ERROR_KEY</code> constant string,
         but if this attribute is set to 'true' the request scope bean
         will be retrieved from the <code>Action.MESSAGE_KEY</code>
         constant string.  Also if this is set to 'true', any value
         assigned to the name attribute will be ignored.
      </p>
         ]]>
            </description>
        </attribute>
    </tag>
    <tag>
        <name>messagesPresent</name>
        <tag-class>
            org.apache.strutsel.taglib.logic.ELMessagesPresentTag</tag-class>
        <body-content>JSP</body-content>
        <description>
            <![CDATA[
            <p><strong>
    Generate the nested body content of this tag if the specified
    message is present in this request.
    </strong></p>
          <p>Evaluates the nested body content of this tag if
       an <code>ActionMessages</code>
       object, <code>ActionErrors</code> object, a String,
       or a String array is in request scope.  If
       such a bean is not found, nothing will be rendered.
    </p>
            <dl><dt><b>Since:</b></dt>
            <dd>Struts 1.1</dd></dl>
          ]]>
        </description>
        <attribute>
            <name>name</name>
            <required>false</required>
            <rtexprvalue>true</rtexprvalue>
            <description>
                <![CDATA[
            <p>The parameter key to retrieve the message from request scope.</p>
         ]]>
            </description>
        </attribute>
        <attribute>
            <name>property</name>
            <required>false</required>
            <rtexprvalue>true</rtexprvalue>
            <description>
                <![CDATA[
            <p>Name of the property for which messages should be
         retrieved.  If not specified, all messages (regardless
         of property) are retrieved.
      </p>
         ]]>
            </description>
        </attribute>
        <attribute>
            <name>message</name>
            <required>false</required>
            <rtexprvalue>true</rtexprvalue>
            <description>
                <![CDATA[
            <p>By default the tag will retrieve the request scope bean it will
         iterate over from the <code>Action.ERROR_KEY</code> constant string,
         but if this attribute is set to 'true' the request scope bean
         will be retrieved from the <code>Action.MESSAGE_KEY</code>
         constant string.  Also if this is set to 'true', any value
         assigned to the name attribute will be ignored.
      </p>
         ]]>
            </description>
        </attribute>
    </tag>
    <tag>
        <name>notMatch</name>
        <tag-class>org.apache.strutsel.taglib.logic.ELNotMatchTag</tag-class>
        <body-content>JSP</body-content>
        <description>
            <![CDATA[
            <p><strong>
    Evaluate the nested body content of this tag if the specified value
    is not an appropriate substring of the requested variable.
    </strong></p>
          <p>Matches the variable specified by one of the selector attributes
    (as a String) against the specified constant value.  If the value is
    not a substring (appropriately limited by the <code>location</code>
    attribute), the nested body content of this tag is evaluated.</p>
      ]]>
        </description>
        <attribute>
            <name>cookie</name>
            <required>false</required>
            <rtexprvalue>true</rtexprvalue>
            <description>
                <![CDATA[
            <p>The variable to be matched is the value of the cookie whose
      name is specified by this attribute.</p>
         ]]>
            </description>
        </attribute>
        <attribute>
            <name>expr</name>
            <required>false</required>
            <rtexprvalue>true</rtexprvalue>
            <description>
                <![CDATA[
            <p>
       A specific value to be compared with, either a static value, or an EL
       value.
      </p>
         ]]>
            </description>

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
蜜桃视频在线一区| 一本大道综合伊人精品热热| 成人美女视频在线观看18| 在线看日韩精品电影| 精品久久久三级丝袜| 亚洲尤物在线视频观看| 国内精品伊人久久久久av影院| 91在线视频播放| 欧美成人video| 午夜激情一区二区| 91欧美激情一区二区三区成人| 精品伦理精品一区| 天堂va蜜桃一区二区三区漫画版| fc2成人免费人成在线观看播放 | 欧美探花视频资源| 国产网站一区二区| 蜜臀久久久久久久| 欧美日韩一区二区三区四区五区| 日本一区二区三区久久久久久久久不| 午夜精品福利一区二区蜜股av| 91在线一区二区三区| 国产精品久久久久久一区二区三区| 麻豆91免费看| 欧美一区二区三区日韩视频| 性做久久久久久免费观看| 精品国产乱码久久久久久闺蜜| 亚洲国产精品久久久久婷婷884| 北岛玲一区二区三区四区| 国产亚洲污的网站| 国产综合成人久久大片91| 精品国产制服丝袜高跟| 久久精品国产999大香线蕉| 欧美疯狂做受xxxx富婆| 日韩国产欧美在线播放| 欧美久久久久久蜜桃| 午夜不卡av免费| 精品视频一区二区三区免费| 亚洲在线视频网站| 欧美久久久久久久久| 亚洲国产成人精品视频| 欧美乱妇23p| 免费看日韩a级影片| 日韩一级片网址| 国内精品自线一区二区三区视频| 欧美r级在线观看| 蜜桃视频一区二区| 精品国产91亚洲一区二区三区婷婷| 日韩高清一区二区| 精品免费日韩av| 国产白丝网站精品污在线入口| 精品日韩在线观看| 国产精华液一区二区三区| 国产精品传媒入口麻豆| 色丁香久综合在线久综合在线观看| 亚洲资源中文字幕| 欧美va亚洲va在线观看蝴蝶网| 国产精品自拍在线| 亚洲免费视频中文字幕| 欧美日韩中文国产| 国产精品自拍av| 亚洲视频一区在线| 欧美一区二区三区爱爱| 国产一区二区福利视频| 亚洲人成影院在线观看| 欧美一级二级在线观看| 成人av在线影院| 午夜激情一区二区| 欧美激情一区二区三区四区 | 亚洲精品乱码久久久久久黑人| 欧美影院一区二区三区| 久久狠狠亚洲综合| 国产精品免费久久久久| 欧美日韩亚洲不卡| 国产高清久久久| 图片区日韩欧美亚洲| 国产精品视频一区二区三区不卡| 欧美少妇bbb| 国产福利不卡视频| 首页综合国产亚洲丝袜| 中文字幕av不卡| 欧美一区二区日韩| 一本色道久久综合精品竹菊| 精品亚洲porn| 亚洲成人动漫在线免费观看| 国产亚洲一区二区三区| 欧美高清视频不卡网| 99久久精品费精品国产一区二区| 美女视频黄a大片欧美| 亚洲天堂精品视频| 婷婷综合久久一区二区三区| 亚洲国产精品99久久久久久久久| 欧美男人的天堂一二区| 成人av电影免费在线播放| 久久精品国产免费看久久精品| 日韩美女久久久| 国产欧美一区二区在线| 精品美女在线播放| 欧美一区午夜视频在线观看| 色94色欧美sute亚洲线路一久| 国产91对白在线观看九色| 久久精品国产99国产精品| 亚洲va欧美va国产va天堂影院| 亚洲色图在线看| 中文字幕免费观看一区| 久久精品欧美一区二区三区麻豆 | 久久久精品人体av艺术| 欧美一区二区三区视频免费播放| 91精品办公室少妇高潮对白| 99r国产精品| av一区二区三区黑人| 成人精品视频一区二区三区尤物| 精品系列免费在线观看| 美女国产一区二区三区| 免费久久99精品国产| 久久er精品视频| 精品午夜久久福利影院| 国产一区二区三区av电影 | 7777精品伊人久久久大香线蕉| 91成人免费在线视频| 欧美天堂一区二区三区| 欧美色视频在线| 欧美精品一卡二卡| 91精品国产综合久久精品| 69精品人人人人| 欧美大黄免费观看| 国产亚洲成aⅴ人片在线观看 | 欧美日韩在线精品一区二区三区激情 | 岛国精品在线观看| 成人小视频在线| 99国产精品一区| 欧洲亚洲国产日韩| 欧美精品乱码久久久久久| 欧美一级二级三级乱码| 欧美不卡123| 中文字幕亚洲区| 天天影视网天天综合色在线播放| 日本在线不卡一区| 国产福利不卡视频| 色综合久久久久综合99| 欧美日韩国产小视频| 精品欧美久久久| 亚洲色大成网站www久久九九| 亚洲一区日韩精品中文字幕| 蜜臀av一区二区在线免费观看 | 国产丝袜欧美中文另类| 中文字幕日韩精品一区| 国产精选一区二区三区| 一本到高清视频免费精品| 欧美一卡二卡三卡四卡| 国产欧美日韩一区二区三区在线观看 | 国产精品自拍在线| 日本高清不卡一区| 欧美成人精品二区三区99精品| 国产精品国产三级国产有无不卡| 一区二区三区蜜桃网| 久久精品国产99| 日本高清视频一区二区| 91精品国产综合久久久蜜臀图片 | 日韩丝袜情趣美女图片| 中文字幕亚洲在| 男女激情视频一区| 99视频在线精品| 精品国产乱码久久久久久老虎| 亚洲欧美日韩中文字幕一区二区三区| 蜜臀av在线播放一区二区三区| 91丨九色丨黑人外教| 久久久久久日产精品| 性欧美疯狂xxxxbbbb| 成人看片黄a免费看在线| 欧美狂野另类xxxxoooo| 国产精品免费视频一区| 麻豆精品在线视频| 欧美性猛交xxxxxx富婆| 国产精品国产三级国产三级人妇 | 亚洲制服丝袜av| 成人黄色777网| 欧美mv和日韩mv国产网站| 久久爱www久久做| 欧美亚洲一区三区| 国产精品久久久久aaaa| 国产一区二区三区观看| 日韩欧美国产成人一区二区| 亚洲午夜久久久久久久久电影网 | 亚洲综合小说图片| 国产黄色精品网站| 精品国产一区二区三区不卡| 丝袜脚交一区二区| 91成人免费在线视频| 亚洲视频精选在线| www.亚洲国产| 国产精品久久久久一区二区三区| 精品在线播放免费| 91精品黄色片免费大全| 丝袜a∨在线一区二区三区不卡| 欧洲精品一区二区| 亚洲与欧洲av电影| 91福利在线观看| 亚洲黄色在线视频| 在线日韩国产精品| 亚洲国产另类av|