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

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

?? struts-logic.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>logic</short-name>
    <uri>http://struts.apache.org/tags-logic</uri>
    <description>
        <![CDATA[
  <p><strong>Note:  Some of the features in this taglib are also
  available in the <a href="http://java.sun.com/products/jsp/jstl/">JavaServer Pages Standard Tag Library (JSTL)</a>.
  The Struts team encourages the use of the standard tags over the Struts
  specific tags when possible.</strong></p>

  <p>This tag library contains tags that are useful in managing conditional
  generation of output text, looping over object collections for
  repetitive generation of output text, and application flow management.</p>

  <p>For tags that do value comparisons (<code>equal</code>,
  <code>greaterEqual</code>, <code>greaterThan</code>, <code>lessEqual</code>,
  <code>lessThan</code>, <code>notEqual</code>), the following rules apply:</p>
  <ul>
  <li>The specified value is examined.  If it can be converted successfully
      to a <code>double</code> or a <code>long</code>, it is assumed that the
      ultimate comparison will be numeric (either floating point or integer).
      Otherwise, a String comparison will be performed.</li>
  <li>The variable to be compared to is retrieved, based on the selector
      attribute(s) (<code>cookie</code>, <code>header</code>,
      <code>name</code>, <code>parameter</code>, <code>property</code>)
      present on this tag.  It will be converted to the appropriate type
      for the comparison, as determined above.</li>
  <li>If the specified variable or property returns null, it will be
      coerced to a zero-length string before the comparison occurs.</li>
  <li>The specific comparison for this tag will be performed, and the nested
      body content of this tag will be evaluated if the comparison returns
      a <code>true</code> result.</li>
  </ul>

  <p>For tags that do substring matching (<code>match</code>,
  <code>notMatch</code>), the following rules apply:</p>
  <ul>
  <li>The specified variable is retrieved, based on the selector attribute(s)
      (<code>cookie</code>, <code>header</code>, <code>name</code>,
      <code>parameter</code>, <code>property</code>) present on this tag.
      The variable is converted to a String, if necessary.</li>
  <li>A request time exception will be thrown if the specified variable
      cannot be retrieved, or has a null value.</li>
  <li>The specified value is checked for existence as a substring of the
      variable, in the position specified by the <code>location</code>
      attribute, as follows:  at the beginning (if location is set to
      <code>start</code>), at the end (if location is set to
      <code>end</code>), or anywhere (if location is not specified).</li>
  </ul>

  <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>empty</name>
        <tag-class>org.apache.struts.taglib.logic.EmptyTag</tag-class>
        <body-content>JSP</body-content>
        <description>
            <![CDATA[
            <p><strong>
    Evaluate the nested body content of this tag if the requested variable is
    either null or an empty string.
    </strong></p>
          
    <p>This tag evaluates its nested body content only if the specified value
    is either absent (i.e. <code>null</code>), an empty string (i.e. a
    <code>java.lang.String</code> with a length of zero), or an empty
    <code>java.util.Collection</code> or <code>java.util.Map</code> (tested by
    the .isEmpty() method on the respective interface).</p>
    
    <p>
    <strong>JSTL</strong>:  The equivalent JSTL tag is &lt;c:if&gt; using the 
    <code>empty</code> operator.  For example,
    <br/>
    <code>
    	&lt;c:if test="${empty sessionScope.myBean.myProperty}"&gt;
    	  do something
    	&lt;/c:if&gt;
    </code>
    </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 variable to be compared 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>property</name>
            <required>false</required>
            <rtexprvalue>true</rtexprvalue>
            <description>
                <![CDATA[
      <p>The variable to be compared 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>
    </tag>
    <tag>
        <name>equal</name>
        <tag-class>org.apache.struts.taglib.logic.EqualTag</tag-class>
        <body-content>JSP</body-content>
        <description>
            <![CDATA[
            <p><strong>
    Evaluate the nested body content of this tag if the requested
    variable is equal to the specified value.
    </strong></p>
          
    <p>Compares the variable specified by one of the selector attributes
    against the specified constant value.  The nested body content of this
    tag is evaluated if the variable and value are <strong>equal</strong>.
    </p>
    ]]>
        </description>
        <attribute>
            <name>cookie</name>
            <required>false</required>
            <rtexprvalue>true</rtexprvalue>
            <description>
                <![CDATA[
      <p>The variable to be compared is the value of the cookie whose
      name is specified by this attribute.</p>
      ]]>
            </description>
        </attribute>
        <attribute>
            <name>header</name>
            <required>false</required>
            <rtexprvalue>true</rtexprvalue>
            <description>
                <![CDATA[
      <p>The variable to be compared 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>name</name>
            <required>false</required>
            <rtexprvalue>true</rtexprvalue>
            <description>
                <![CDATA[
      <p>The variable to be compared 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 compared 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 compared 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 to which the variable, specified by other
      attribute(s) of this tag, will be compared.</p>
      ]]>
            </description>
        </attribute>
    </tag>
    <tag>
        <name>forward</name>
        <tag-class>org.apache.struts.taglib.logic.ForwardTag</tag-class>
        <body-content>empty</body-content>
        <description>
            <![CDATA[
            <p><strong>
    Forward control to the page specified by the specified ActionForward
    entry.
    </strong></p>
          
    <p>Performs a <code>PageContext.forward()</code> or
    <code>HttpServletResponse.sendRedirect()</code> call for the global
    <code>ActionForward</code> entry for the specified name.  URL
    rewriting will occur automatically if a redirect is performed.</p>
    ]]>
        </description>
        <attribute>
            <name>name</name>
            <required>true</required>
            <rtexprvalue>true</rtexprvalue>
            <description>
                <![CDATA[
      <p>
      	The logical name of the global <code>ActionForward</code> entry
      	that identifies the destination, and forwarding approach, to be used.
        <strong>Note</strong>: forwarding to Tiles definitions is not supported
        from this tag.  You should forward to them from an Action subclass.
      </p>
      ]]>
            </description>
        </attribute>
    </tag>
    <tag>
        <name>greaterEqual</name>
        <tag-class>org.apache.struts.taglib.logic.GreaterEqualTag</tag-class>
        <body-content>JSP</body-content>
        <description>
            <![CDATA[
            <p><strong>
    Evaluate the nested body content of this tag if the requested
    variable is greater than or equal to the specified value.
    </strong></p>
          
    <p>Compares the variable specified by one of the selector attributes
    against the specified constant value.  The nested body content of this
    tag is evaluated if the variable is <strong>greater than or equal</strong>
    to the value.</p>
    ]]>
        </description>
        <attribute>
            <name>cookie</name>
            <required>false</required>
            <rtexprvalue>true</rtexprvalue>
            <description>
                <![CDATA[
      <p>The variable to be compared is the value of the cookie whose
      name is specified by this attribute.</p>
      ]]>
            </description>
        </attribute>
        <attribute>
            <name>header</name>
            <required>false</required>
            <rtexprvalue>true</rtexprvalue>
            <description>
                <![CDATA[
      <p>The variable to be compared 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>name</name>
            <required>false</required>
            <rtexprvalue>true</rtexprvalue>
            <description>
                <![CDATA[
      <p>The variable to be compared 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 compared 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>

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
成人久久视频在线观看| 久久99九九99精品| 国产日韩欧美精品综合| 精品美女在线观看| 精品久久久久香蕉网| 欧美一级欧美一级在线播放| 制服丝袜激情欧洲亚洲| 欧美一三区三区四区免费在线看 | 亚洲国产日韩av| 亚洲三级理论片| 亚洲综合网站在线观看| 亚洲成av人片在www色猫咪| 亚洲超碰97人人做人人爱| 日日摸夜夜添夜夜添精品视频| 午夜精品爽啪视频| 加勒比av一区二区| 不卡av电影在线播放| 色婷婷综合久久久| 91精品国产免费| 国产亚洲一本大道中文在线| 日本一二三四高清不卡| 亚洲精品成人精品456| 肉丝袜脚交视频一区二区| 久久成人18免费观看| av一二三不卡影片| 欧美精品在线一区二区| 久久久五月婷婷| 亚洲免费观看高清在线观看| 日本91福利区| 91污在线观看| 欧美成人猛片aaaaaaa| 国产精品久久久久四虎| 亚洲伊人色欲综合网| 国产一区二区不卡| 在线观看亚洲a| 久久久国产一区二区三区四区小说 | 久久精品夜色噜噜亚洲a∨| 亚洲国产精品成人久久综合一区| 亚洲色图欧洲色图婷婷| 毛片不卡一区二区| 99re66热这里只有精品3直播| 91精品国产免费久久综合| 国产精品久久久99| 蜜桃视频一区二区三区| 91在线看国产| 久久影院电视剧免费观看| 一区二区三区在线视频观看| 精品一二三四区| 欧美日韩一区高清| |精品福利一区二区三区| 麻豆freexxxx性91精品| 色综合久久天天| 国产欧美日韩中文久久| 日韩成人一级大片| 91污在线观看| 国产精品天天摸av网| 美女高潮久久久| 欧美伦理视频网站| 亚洲美女屁股眼交3| 高潮精品一区videoshd| 久久网站最新地址| 青草av.久久免费一区| 欧美日韩一区不卡| 亚洲永久精品国产| 91久久香蕉国产日韩欧美9色| 国产免费观看久久| 国产精品性做久久久久久| 精品国产自在久精品国产| 欧美96一区二区免费视频| 欧美日韩成人高清| 亚洲成人免费视频| 欧美日韩不卡在线| 天堂久久一区二区三区| 制服丝袜一区二区三区| 日韩国产精品久久| 欧美男生操女生| 日本美女一区二区三区视频| 欧美精品少妇一区二区三区| 亚洲第一福利一区| 欧美美女一区二区三区| 五月天国产精品| 欧美成人一区二区三区片免费| 偷拍自拍另类欧美| 制服丝袜成人动漫| 美女免费视频一区| 久久综合色一综合色88| 国产成人在线视频网站| 中文字幕电影一区| 色噜噜狠狠一区二区三区果冻| 亚洲精品老司机| 欧美日韩国产一区| 黑人巨大精品欧美一区| 综合欧美亚洲日本| 欧美午夜精品一区二区蜜桃| 丝袜a∨在线一区二区三区不卡 | 日本一区二区三区四区| 北岛玲一区二区三区四区| 亚洲精品免费一二三区| 制服丝袜亚洲网站| 粉嫩久久99精品久久久久久夜| 国产精品国产三级国产aⅴ无密码 国产精品国产三级国产aⅴ原创 | 成人精品gif动图一区| 综合色天天鬼久久鬼色| 欧美一区2区视频在线观看| 国产一区二区三区免费| 尤物av一区二区| 日韩欧美卡一卡二| 97成人超碰视| 免费欧美日韩国产三级电影| 亚洲视频一二三区| 欧美变态口味重另类| 91婷婷韩国欧美一区二区| 蜜桃av一区二区三区电影| 中文字幕亚洲综合久久菠萝蜜| 在线欧美一区二区| 国产成人激情av| 日韩精品视频网站| 日韩理论电影院| 久久无码av三级| 在线播放91灌醉迷j高跟美女 | 日韩高清国产一区在线| 国产精品灌醉下药二区| 欧美精品一区男女天堂| 欧美高清视频在线高清观看mv色露露十八 | 成人伦理片在线| 日韩在线播放一区二区| 国产精品不卡在线观看| 精品久久国产字幕高潮| 欧美男同性恋视频网站| 色综合色综合色综合| 国产毛片精品视频| 日韩精品成人一区二区在线| 国产精品视频一二三| 欧美mv日韩mv国产网站app| 在线亚洲免费视频| 国产白丝精品91爽爽久久| 久久精品999| 亚洲免费av观看| 亚洲欧洲成人av每日更新| 国产亚洲精品7777| 欧美成人精品福利| 制服丝袜亚洲精品中文字幕| 色999日韩国产欧美一区二区| 国产91露脸合集magnet| 国产一区二区不卡在线 | 国产精品乱码一区二区三区软件| 欧美不卡一区二区三区| 日韩视频一区二区三区在线播放| 精品视频全国免费看| 色8久久人人97超碰香蕉987| 国产激情91久久精品导航 | 亚洲日本青草视频在线怡红院| 欧美精品一区二区久久久| 日韩久久免费av| 欧美精品一区二区三区四区| 日韩精品一区二区三区在线观看| 欧美日韩久久久| 91精品国产综合久久婷婷香蕉| 欧洲一区二区三区在线| 色婷婷久久久综合中文字幕| 欧美在线观看一区二区| 欧美日精品一区视频| 欧洲另类一二三四区| 欧美性大战久久| 欧美一区二区精品| 久久综合色8888| 国产精品福利av| 亚洲成人激情av| 狠狠久久亚洲欧美| 99久久99久久免费精品蜜臀| 欧美丝袜自拍制服另类| 日韩一区二区三区精品视频| 久久婷婷色综合| 亚洲乱码中文字幕| 日本欧美加勒比视频| 成人精品视频一区二区三区尤物| av欧美精品.com| 欧美日韩精品一区二区三区四区| 日韩一区二区高清| 国产欧美一区二区在线观看| 亚洲视频在线观看一区| 午夜电影一区二区三区| 国产一区二区三区四区五区美女| 99精品视频在线观看| 555www色欧美视频| 亚洲国产岛国毛片在线| 亚洲国产综合在线| 精品一区二区av| 日本电影欧美片| xf在线a精品一区二区视频网站| 中文字幕一区二区三中文字幕| 亚洲成a人v欧美综合天堂| 国产成人午夜精品5599 | 91免费视频观看| 日韩一区二区在线播放| 亚洲图片另类小说| 国产一区二区三区蝌蚪| 欧美日韩精品专区| 悠悠色在线精品| 国产suv精品一区二区三区|