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

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

?? html_basic.tld

?? 一些的javaee5的實用代碼
?? TLD
?? 第 1 頁 / 共 5 頁
字號:
<?xml version="1.0" encoding="ISO-8859-1" ?>

<!DOCTYPE taglib
PUBLIC "-//Sun Microsystems, Inc.//DTD JSP Tag Library 1.2//EN"
"http://java.sun.com/dtd/web-jsptaglibrary_1_2.dtd">

<taglib>

<!-- ============== Tag Library Description Elements ============= -->

<tlib-version>1.0</tlib-version>
<jsp-version>1.2</jsp-version>
<short-name>h</short-name>
<uri>http://java.sun.com/jsf/html</uri>
<description>
  This tag library contains JavaServer Faces component tags for all
  UIComponent + HTML RenderKit Renderer combinations defined in the
  JavaServer Faces Specification.
</description>

<!-- ============== Tag Library Validator ============= -->

<validator>
  <validator-class>
    com.sun.faces.taglib.html_basic.HtmlBasicValidator
  </validator-class>
</validator>

<!-- ===================== HTML 4.0 basic tags ====================== -->

  <tag>
    <name>commandButton</name>
    <tag-class>com.sun.faces.taglib.html_basic.CommandButtonTag</tag-class>
    <tei-class>com.sun.faces.taglib.FacesTagExtraInfo</tei-class>
    <body-content>JSP</body-content>
    <description>
      <![CDATA[<p>Renders an HTML "input" element.</p><p>Decode Behavior</p><ul><p>Obtain the <code>Map</code> from the "requestParameterMap"
      property of the <code>ExternalContext</code>.  If the value in the<code>Map</code> for the value of the "clientId" property of the
      component is <code>null</code>, create a String by concatenating
      the value of the "clientId" property of the component with the
      String ".x" (without the quotes).  Create another String in the
      same manner, but concatenate ".y" (without the quotes).  If<code>null</code> is the value in the <code>Map</code> for both
      Strings, return from <code>decode()</code>.  If the value in the<code>Map</code> for the value of the "clientId" property of the
      component is not <code>null</code>, get the value of the "type"
      attribute, and convert it to lower case.  If the result is equal
      to the String "reset" (without the quotes), return from<code>decode()</code>.  Otherwise, create a<code>javax.faces.event.ActionEvent</code> around the component,
      and pass it to the <code>queueEvent()</code> method of the
      component, which must be an instance of<code>UICommand</code>.</p></ul><p>Encode Behavior</p><ul><p>Render the clientId of the component as the value of the
      "name" attribute.  Render the current value of the component as
      the value of the "value" attribute.  If the "styleClass" attribute
      is specified, render its value as the value of the "class"
      attribute.</p></ul>]]>
    </description>
    <attribute>
      <name>action</name>
      <required>false</required>
      <rtexprvalue>false</rtexprvalue>
      <description>
      
          MethodBinding representing the application action to invoke when
          this component is activated by the user.  The expression must
          evaluate to a public method that takes no parameters, and returns
          a String (the logical outcome) which is passed to the
          NavigationHandler for this application.
      </description>
    </attribute>
    <attribute>
      <name>actionListener</name>
      <required>false</required>
      <rtexprvalue>false</rtexprvalue>
      <description>
      
          MethodBinding representing an action listener method that will be
          notified when this component is activated by the user.  The
          expression must evaluate to a public method that takes an
          ActionEvent parameter, with a return type of void.
      </description>
    </attribute>
    <attribute>
      <name>id</name>
      <required>false</required>
      <rtexprvalue>false</rtexprvalue>
      <description>
      
          The component identifier for this component.  This value must be
          unique within the closest parent component that is a naming
          container.
      </description>
    </attribute>
    <attribute>
      <name>immediate</name>
      <required>false</required>
      <rtexprvalue>false</rtexprvalue>
      <description>
      
          Flag indicating that, if this component is activated by the user,
          notifications should be delivered to interested listeners and actions
          immediately (that is, during Apply Request Values phase) rather than
          waiting until Invoke Application phase.
      </description>
    </attribute>
    <attribute>
      <name>rendered</name>
      <required>false</required>
      <rtexprvalue>false</rtexprvalue>
      <description>
      
          Flag indicating whether or not this component should be rendered
          (during Render Response Phase), or processed on any subsequent
          form submit.
      </description>
    </attribute>
    <attribute>
      <name>value</name>
      <required>false</required>
      <rtexprvalue>false</rtexprvalue>
      <description>
      
          The current value of this component.
      </description>
    </attribute>
    <attribute>
      <name>accesskey</name>
      <required>false</required>
      <rtexprvalue>false</rtexprvalue>
      <description>
      
          Access key that, when pressed, transfers focus
          to this element.
      </description>
    </attribute>
    <attribute>
      <name>alt</name>
      <required>false</required>
      <rtexprvalue>false</rtexprvalue>
      <description>
      
        Alternate textual description of the
        element rendered by this component.
      </description>
    </attribute>
    <attribute>
      <name>dir</name>
      <required>false</required>
      <rtexprvalue>false</rtexprvalue>
      <description>
      
          Direction indication for text that does not inherit directionality.
          Valid values are "LTR" (left-to-right) and "RTL" (right-to-left).
      </description>
    </attribute>
    <attribute>
      <name>disabled</name>
      <required>false</required>
      <rtexprvalue>false</rtexprvalue>
      <description>
      
          Flag indicating that this element must never
          receive focus or be included in a subsequent
          submit.
      </description>
    </attribute>
    <attribute>
      <name>image</name>
      <required>false</required>
      <rtexprvalue>false</rtexprvalue>
      <description>
      
        Absolute or relative URL of the image
        to be displayed for this button.  If
        specified, this "input" element will be
        of type "image".  Otherwise, it will be
        of the type specified by the "type"
        property with a label specified by the
        "value" property.
      </description>
    </attribute>
    <attribute>
      <name>lang</name>
      <required>false</required>
      <rtexprvalue>false</rtexprvalue>
      <description>
      
          Code describing the language used in the generated markup
          for this component.
      </description>
    </attribute>
    <attribute>
      <name>onblur</name>
      <required>false</required>
      <rtexprvalue>false</rtexprvalue>
      <description>
      
          Javascript code executed when this element loses focus.
      </description>
    </attribute>
    <attribute>
      <name>onchange</name>
      <required>false</required>
      <rtexprvalue>false</rtexprvalue>
      <description>
      
          Javascript code executed when this element loses focus
          and its value has been modified since gaining focus.
      </description>
    </attribute>
    <attribute>
      <name>onclick</name>
      <required>false</required>
      <rtexprvalue>false</rtexprvalue>
      <description>
      
          Javascript code executed when a pointer button is
          clicked over this element.
      </description>
    </attribute>
    <attribute>
      <name>ondblclick</name>
      <required>false</required>
      <rtexprvalue>false</rtexprvalue>
      <description>
      
          Javascript code executed when a pointer button is
          double clicked over this element.
      </description>
    </attribute>
    <attribute>
      <name>onfocus</name>
      <required>false</required>
      <rtexprvalue>false</rtexprvalue>
      <description>
      
          Javascript code executed when this element receives focus.
      </description>
    </attribute>
    <attribute>
      <name>onkeydown</name>
      <required>false</required>
      <rtexprvalue>false</rtexprvalue>
      <description>
      
          Javascript code executed when a key is
          pressed down over this element.
      </description>
    </attribute>
    <attribute>
      <name>onkeypress</name>
      <required>false</required>
      <rtexprvalue>false</rtexprvalue>
      <description>
      
          Javascript code executed when a key is
          pressed and released over this element.
      </description>
    </attribute>
    <attribute>
      <name>onkeyup</name>
      <required>false</required>
      <rtexprvalue>false</rtexprvalue>
      <description>
      
          Javascript code executed when a key is
          released over this element.
      </description>
    </attribute>
    <attribute>
      <name>onmousedown</name>
      <required>false</required>
      <rtexprvalue>false</rtexprvalue>
      <description>
      
          Javascript code executed when a pointer button is
          pressed down over this element.
      </description>
    </attribute>
    <attribute>
      <name>onmousemove</name>
      <required>false</required>
      <rtexprvalue>false</rtexprvalue>
      <description>
      
          Javascript code executed when a pointer button is
          moved within this element.
      </description>
    </attribute>
    <attribute>
      <name>onmouseout</name>
      <required>false</required>
      <rtexprvalue>false</rtexprvalue>
      <description>
      
          Javascript code executed when a pointer button is
          moved away from this element.
      </description>
    </attribute>
    <attribute>
      <name>onmouseover</name>
      <required>false</required>
      <rtexprvalue>false</rtexprvalue>
      <description>
      
          Javascript code executed when a pointer button is
          moved onto this element.
      </description>
    </attribute>
    <attribute>
      <name>onmouseup</name>
      <required>false</required>
      <rtexprvalue>false</rtexprvalue>
      <description>
      
          Javascript code executed when a pointer button is
          released over this element.
      </description>
    </attribute>
    <attribute>
      <name>onselect</name>
      <required>false</required>
      <rtexprvalue>false</rtexprvalue>
      <description>
      
          Javascript code executed when text within this
          element is selected by the user.
      </description>
    </attribute>
    <attribute>
      <name>readonly</name>
      <required>false</required>
      <rtexprvalue>false</rtexprvalue>
      <description>
      
          Flag indicating that this component will prohibit
          changes by the user.  The element may receive focus
          unless it has also been disabled.
      </description>
    </attribute>
    <attribute>
      <name>style</name>
      <required>false</required>
      <rtexprvalue>false</rtexprvalue>
      <description>
      
          CSS style(s) to be applied when this component is rendered.
      </description>
    </attribute>
    <attribute>
      <name>styleClass</name>
      <required>false</required>
      <rtexprvalue>false</rtexprvalue>
      <description>
      
          Space-separated list of CSS style class(es) to be applied when
          this element is rendered.  This value must be passed through
          as the "class" attribute on generated markup.
      </description>
    </attribute>
    <attribute>
      <name>tabindex</name>
      <required>false</required>
      <rtexprvalue>false</rtexprvalue>
      <description>
      
          Position of this element in the tabbing order
          for the current document.  This value must be
          an integer between 0 and 32767.
      </description>
    </attribute>
    <attribute>
      <name>title</name>
      <required>false</required>
      <rtexprvalue>false</rtexprvalue>
      <description>
      

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
日韩精品高清不卡| 国产性天天综合网| 一区二区三区高清在线| 成人黄页在线观看| 亚洲欧洲国产专区| 欧美亚洲一区二区三区四区| 亚洲成人激情社区| 精品久久久影院| 国产69精品久久久久777| 最新中文字幕一区二区三区| 在线视频一区二区三| 日日欢夜夜爽一区| 国产三级欧美三级| 色猫猫国产区一区二在线视频| 夜夜精品视频一区二区| 日韩一级片在线播放| 国产乱人伦偷精品视频免下载| 国产精品国产三级国产专播品爱网| 欧洲一区二区三区在线| 麻豆极品一区二区三区| 亚洲国产精品黑人久久久| 日本伦理一区二区| 精品一区二区三区在线观看国产| 亚洲欧洲精品天堂一级| 日韩欧美国产一区在线观看| 粉嫩在线一区二区三区视频| 香蕉乱码成人久久天堂爱免费| 精品国产一区二区国模嫣然| 99久久精品国产一区二区三区| 一二三四区精品视频| 国产无一区二区| 4438x亚洲最大成人网| 粉嫩一区二区三区性色av| 五月婷婷久久综合| 国产精品护士白丝一区av| 日韩一区二区电影在线| 在线一区二区三区四区五区| 黄页网站大全一区二区| 亚洲国产精品自拍| 欧美激情一区二区三区四区 | 中文字幕一区三区| 欧美人伦禁忌dvd放荡欲情| 国产成人av电影免费在线观看| 亚洲动漫第一页| 中文字幕一区二区三区不卡| 日韩精品专区在线| 欧美日韩欧美一区二区| 色综合久久综合中文综合网| 国产传媒欧美日韩成人| 喷白浆一区二区| 亚洲国产成人va在线观看天堂| 欧美国产激情一区二区三区蜜月| 欧美一区二区三区影视| 91国产福利在线| 91麻豆.com| 99热国产精品| 成人动漫在线一区| 国产剧情在线观看一区二区| 麻豆精品视频在线观看| 男人的j进女人的j一区| 亚洲成av人片一区二区三区| 夜夜精品视频一区二区| 亚洲女人的天堂| 亚洲婷婷综合色高清在线| 国产偷国产偷精品高清尤物| 日韩精品一区在线观看| 日韩一区二区视频在线观看| 欧美日韩黄色一区二区| 在线观看av一区二区| 91麻豆高清视频| 日本高清成人免费播放| 色综合天天综合狠狠| 不卡视频一二三| 91在线小视频| 日本高清视频一区二区| 在线观看免费视频综合| 欧美色视频一区| 欧美日韩视频一区二区| 91精品国产综合久久精品性色| 欧美人妇做爰xxxⅹ性高电影 | 一区二区在线电影| 亚洲欧美色一区| 亚洲一区二区中文在线| 亚洲国产精品麻豆| 日韩av在线播放中文字幕| 男女性色大片免费观看一区二区| 精品在线你懂的| 成人综合在线网站| 91麻豆6部合集magnet| 欧美色图第一页| 日韩三级高清在线| 国产亚洲综合在线| 亚洲三级在线看| 午夜亚洲国产au精品一区二区| 日韩精品免费专区| 国产做a爰片久久毛片| gogogo免费视频观看亚洲一| 一本色道久久综合精品竹菊| 欧美日韩一区二区三区在线看 | 中国av一区二区三区| 国产精品沙发午睡系列990531| 亚洲欧美激情在线| 日本伊人色综合网| 国产成人午夜精品影院观看视频| 成人激情视频网站| 欧美理论电影在线| 国产欧美一区二区精品婷婷 | 欧美怡红院视频| 日韩欧美一区中文| 国产精品麻豆久久久| 亚洲福利电影网| 国产aⅴ精品一区二区三区色成熟| 日本二三区不卡| 精品久久一区二区三区| 亚洲精品网站在线观看| 免费观看日韩电影| 91麻豆精品在线观看| 91精品国产91久久久久久一区二区| 久久久久久久综合| 天天av天天翘天天综合网 | 国产乱淫av一区二区三区 | 麻豆精品蜜桃视频网站| 99视频精品免费视频| 日韩三级中文字幕| 一区二区三区成人| 国产一区二区三区四区在线观看| 一本大道久久a久久精二百| 日韩三区在线观看| 亚洲成在人线免费| 92国产精品观看| 国产欧美精品一区二区色综合朱莉| 亚洲在线免费播放| 成人国产电影网| 精品久久国产字幕高潮| 亚洲成人精品影院| 色婷婷综合视频在线观看| 黄页网站大全一区二区| 亚洲天堂久久久久久久| 亚洲国产精品成人综合色在线婷婷| 午夜久久久影院| 成人黄色av网站在线| 日韩欧美中文一区二区| 亚洲香蕉伊在人在线观| 97精品久久久午夜一区二区三区 | 久久99精品国产麻豆婷婷洗澡| 色婷婷av一区二区三区gif| 国产精品视频你懂的| 久久91精品久久久久久秒播| 欧美日韩精品电影| 亚洲综合色噜噜狠狠| av不卡在线播放| 国产精品色呦呦| 成人自拍视频在线观看| 欧美成人三级在线| 免费三级欧美电影| 91精品国产黑色紧身裤美女| 亚洲大片在线观看| 欧美日本一区二区| 亚洲成人av免费| 欧美日本在线一区| 日韩影院在线观看| 日韩三级伦理片妻子的秘密按摩| 日本欧美在线观看| 欧美大片顶级少妇| 九色综合狠狠综合久久| 精品乱码亚洲一区二区不卡| 蜜臀av性久久久久蜜臀aⅴ| 欧美一区永久视频免费观看| 日产精品久久久久久久性色| 日韩欧美一区在线| 日本不卡视频一二三区| 欧美zozo另类异族| 国产91精品免费| 中文字幕中文字幕在线一区 | 中国av一区二区三区| 成人激情文学综合网| 亚洲女性喷水在线观看一区| 日本高清无吗v一区| 日韩国产精品久久| 欧美成人精品福利| 国产成人三级在线观看| 国产精品国产自产拍高清av | 亚洲天堂精品在线观看| 日本高清无吗v一区| 天天射综合影视| 久久网站最新地址| 97久久精品人人爽人人爽蜜臀| 伊人夜夜躁av伊人久久| 日韩免费观看高清完整版在线观看| 国精品**一区二区三区在线蜜桃| 国产精品久久久一本精品 | 国产一区三区三区| 亚洲视频一区在线| 在线不卡一区二区| 久久精品国产99| 国产精品久久久久国产精品日日| 欧美三级视频在线观看| 精品一二三四区| 夜夜嗨av一区二区三区中文字幕| 91精品国产色综合久久不卡蜜臀|