亚洲欧美第一页_禁久久精品乱码_粉嫩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一区二区三区免费野_久草精品视频
精品一区二区三区在线观看国产 | 欧美一区欧美二区| 亚洲免费观看高清完整| 色婷婷久久久综合中文字幕| 亚洲婷婷综合久久一本伊一区| av午夜精品一区二区三区| ...中文天堂在线一区| 99re成人精品视频| 亚洲图片一区二区| 日韩欧美一级在线播放| 国产黄色成人av| 亚洲人成7777| 91精品一区二区三区久久久久久| 蜜臀av国产精品久久久久| 久久精品人人做人人综合| 91在线免费播放| 日韩电影在线一区二区三区| 久久久精品国产免大香伊| 成人精品国产一区二区4080| 亚洲国产wwwccc36天堂| 精品少妇一区二区三区在线播放| 成人免费视频网站在线观看| 亚洲国产精品天堂| 久久久久久免费网| 欧美三级电影精品| 国产成人在线网站| 亚洲一区二区欧美日韩| 久久久www免费人成精品| 91黄色在线观看| 国产一区二区三区综合| 亚洲丝袜精品丝袜在线| 日韩女同互慰一区二区| 色噜噜久久综合| 九九国产精品视频| 亚洲国产精品久久艾草纯爱| 久久久久国产精品麻豆ai换脸 | 综合色中文字幕| 日韩欧美一区二区免费| 91福利区一区二区三区| 国产精品影视天天线| 午夜精品影院在线观看| 国产精品人人做人人爽人人添| 91麻豆精品国产无毒不卡在线观看 | 国产精品一品视频| 亚洲福利一区二区| 国产精品高潮呻吟| 精品国产一区二区三区不卡| 欧美无人高清视频在线观看| www.成人网.com| 国产精品综合av一区二区国产馆| 视频一区在线播放| 伊人色综合久久天天| 国产精品久久免费看| 欧美成人乱码一区二区三区| 精品视频123区在线观看| 91热门视频在线观看| 国产高清成人在线| 国产一区美女在线| 久久99最新地址| 日韩电影在线免费看| 亚洲国产日韩a在线播放性色| 中文字幕一区二区在线观看| 国产亚洲欧美激情| 久久免费国产精品| 久久伊99综合婷婷久久伊| 56国语精品自产拍在线观看| 欧美视频三区在线播放| 欧美性生活一区| 欧美三级中文字幕在线观看| 色香蕉成人二区免费| 97se亚洲国产综合自在线 | 美女一区二区三区| 男人的j进女人的j一区| 日本不卡在线视频| 美女脱光内衣内裤视频久久网站 | 国产不卡视频在线观看| 国产在线国偷精品免费看| 久88久久88久久久| 国产精品18久久久久久久久| 国产一区二区三区精品欧美日韩一区二区三区 | 久久精品国产在热久久| 日本特黄久久久高潮| 日韩av电影免费观看高清完整版在线观看| 亚洲午夜电影在线| 日韩影视精彩在线| 蜜臀99久久精品久久久久久软件| 久久99精品视频| 国产成人亚洲精品狼色在线| 成人av资源在线观看| 成人av集中营| 日本精品一区二区三区高清| 欧美日韩精品欧美日韩精品| 6080国产精品一区二区| 久久婷婷国产综合国色天香| 欧美极品xxx| 一区二区高清免费观看影视大全| 亚洲福利一区二区| 极品尤物av久久免费看| 成人动漫精品一区二区| 在线观看91精品国产入口| 91精品国产一区二区三区| 久久久久久久性| 亚洲免费av高清| 乱一区二区av| 91视频91自| 日韩午夜小视频| 中文字幕第一区二区| 亚洲国产日韩一区二区| 国内精品国产成人| eeuss鲁片一区二区三区在线观看| 欧美亚洲自拍偷拍| 久久久久久久久免费| 一区二区三区欧美视频| 日韩av成人高清| 99久久综合国产精品| 在线播放视频一区| 国产精品免费丝袜| 亚洲国产一区二区视频| 久久av资源站| 欧美在线|欧美| 国产亚洲欧美激情| 亚洲成a天堂v人片| 国产成人精品一区二区三区四区| 欧美亚洲日本一区| 国产拍揄自揄精品视频麻豆| 亚洲成人免费影院| www.亚洲色图| 久久网站最新地址| 丝袜美腿亚洲一区| 91啪亚洲精品| 国产欧美综合在线观看第十页| 天天做天天摸天天爽国产一区| 国产精品亚洲午夜一区二区三区| 欧美精品在线一区二区三区| 亚洲欧洲日韩综合一区二区| 日韩电影免费一区| 欧洲精品中文字幕| 综合久久综合久久| 国产91在线观看丝袜| 日韩免费看的电影| 亚洲电影第三页| 色综合网站在线| 国产精品久99| 国产不卡视频在线观看| 337p粉嫩大胆噜噜噜噜噜91av | 亚洲一区二区三区在线看| 国产不卡视频一区| 久久久久久久精| 九九**精品视频免费播放| 在线电影国产精品| 午夜精品久久久久久久久久久| 9色porny自拍视频一区二区| 国产欧美综合色| 国产高清不卡一区| wwwwxxxxx欧美| 狠狠色狠狠色综合日日91app| 91精品国产综合久久精品性色| 亚洲一区在线观看免费| 91搞黄在线观看| 一区二区视频在线| 色哟哟一区二区三区| 中文字幕一区不卡| 91丨九色porny丨蝌蚪| √…a在线天堂一区| 色综合久久综合中文综合网| 亚洲欧美aⅴ...| 在线欧美日韩国产| 亚洲成a人片综合在线| 欧美精品三级日韩久久| 日韩av一区二| 亚洲精品在线免费观看视频| 国产一本一道久久香蕉| xnxx国产精品| 成人动漫视频在线| 亚洲日本青草视频在线怡红院 | 在线不卡a资源高清| 日韩激情在线观看| 日韩免费福利电影在线观看| 精品一区二区av| 国产日韩欧美在线一区| 波多野结衣在线aⅴ中文字幕不卡| 中文字幕成人网| 色一情一伦一子一伦一区| 亚洲高清免费视频| 日韩女优av电影| 国产成人免费在线观看不卡| 成人欧美一区二区三区在线播放| 色呦呦日韩精品| 日韩中文字幕区一区有砖一区| 欧美电影免费观看高清完整版在| 国产福利91精品一区二区三区| 国产精品乱人伦| 欧美亚洲尤物久久| 久久99国产精品免费| 中文在线一区二区| 欧美色爱综合网| 国产精品1024久久| 一区二区三区在线免费视频| 日韩欧美国产综合一区| 成人v精品蜜桃久久一区|