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

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

?? ajaxtags.tld

?? The AJAX JSP Tag Library is a set of JSP tags that simplify the use of Asynchronous JavaScript and X
?? TLD
字號:
<?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 xmlns="http://java.sun.com/JSP/TagLibraryDescriptor">
  <tlib-version>1.0</tlib-version>
  <jsp-version>1.2</jsp-version>
  <short-name>Ajax Tag Library</short-name>
  <uri>http://ajaxtags.org/tags/ajax</uri>
  <description>Ajax Tag Library</description>

  <tag>
    <name>select</name>
    <tag-class>org.ajaxtags.tags.AjaxSelectTag</tag-class>
    <description>
      Builds the JavaScript required to populate a select box based on some event.
    </description>

    <attribute>
      <name>fieldId</name>
      <required>true</required>
      <rtexprvalue>true</rtexprvalue>
      <description>
        The initial select field that will form the basis for the search via AJAX
      </description>
    </attribute>

    <attribute>
      <name>targetId</name>
      <required>true</required>
      <rtexprvalue>true</rtexprvalue>
      <description>Select field where value of AJAX search will be populated</description>
    </attribute>

    <attribute>
      <name>baseUrl</name>
      <required>true</required>
      <rtexprvalue>true</rtexprvalue>
      <description>
        URL of server-side action or servlet that processes search and returns list of values used
        in target select field
      </description>
    </attribute>

    <attribute>
      <name>paramName</name>
      <required>true</required>
      <rtexprvalue>true</rtexprvalue>
      <description>
        Name of parameter used to pass search string to server-side action or servlet
      </description>
    </attribute>

    <attribute>
      <name>postFunc</name>
      <required>false</required>
      <rtexprvalue>true</rtexprvalue>
      <description>
        Function to execute after Ajax is finished, allowing for a chain of additional functions to
        execute
      </description>
    </attribute>

    <attribute>
      <name>emptyFunc</name>
      <required>false</required>
      <rtexprvalue>true</rtexprvalue>
      <description>
        Function to execute if there is an empty response
      </description>
    </attribute>

    <attribute>
      <name>errorFunc</name>
      <required>false</required>
      <rtexprvalue>true</rtexprvalue>
      <description>
        Function to execute if there is a server exception (non-200 HTTP response)
      </description>
    </attribute>
  </tag>

  <tag>
    <name>autocomplete</name>
    <tag-class>org.ajaxtags.tags.AjaxAutocompleteTag</tag-class>
    <description>
      Builds the JavaScript required to populate an input field as the user types.
    </description>

    <attribute>
      <name>fieldId</name>
      <required>true</required>
      <rtexprvalue>true</rtexprvalue>
      <description>
        Text field where label of autocomplete selection will be populated; also the field in which
        the user types out the search string
      </description>
    </attribute>

    <attribute>
      <name>popupId</name>
      <required>true</required>
      <rtexprvalue>true</rtexprvalue>
      <description>ID of div tag used to show available choices in autocomplete</description>
    </attribute>

    <attribute>
      <name>targetId</name>
      <required>true</required>
      <rtexprvalue>true</rtexprvalue>
      <description>Text field where value of autocomplete selection will be populated</description>
    </attribute>

    <attribute>
      <name>baseUrl</name>
      <required>true</required>
      <rtexprvalue>true</rtexprvalue>
      <description>
        URL of server-side action or servlet that processes search and returns list of values used
        in autocomplete dropdown
      </description>
    </attribute>

    <attribute>
      <name>paramName</name>
      <required>true</required>
      <rtexprvalue>true</rtexprvalue>
      <description>
        Name of parameter used to pass search string to server-side action or servlet
      </description>
    </attribute>

    <attribute>
      <name>className</name>
      <required>true</required>
      <rtexprvalue>true</rtexprvalue>
      <description>CSS class name to apply to the popup autocomplete dropdown</description>
    </attribute>

    <attribute>
      <name>postFunc</name>
      <required>false</required>
      <rtexprvalue>true</rtexprvalue>
      <description>
        Function to execute after Ajax is finished, allowing for a chain of additional functions to
        execute
      </description>
    </attribute>

    <attribute>
      <name>progressStyle</name>
      <required>false</required>
      <rtexprvalue>true</rtexprvalue>
      <description>Used to define a CSS style that places an icon in the input field</description>
    </attribute>

    <attribute>
      <name>minimumCharacters</name>
      <required>false</required>
      <rtexprvalue>true</rtexprvalue>
      <description>Minimum number of characters needed before autocomplete is executed</description>
    </attribute>
  </tag>

  <tag>
    <name>toggle</name>
    <tag-class>org.ajaxtags.tags.AjaxToggleTag</tag-class>
    <description>Builds the JavaScript required to toggle an image on/off.</description>

    <attribute>
      <name>imageId</name>
      <required>true</required>
      <rtexprvalue>true</rtexprvalue>
      <description>Image tag ID that will be toggled on/off</description>
    </attribute>

    <attribute>
      <name>targetId</name>
      <required>true</required>
      <rtexprvalue>true</rtexprvalue>
      <description>ID of div tag used to show HTML/text response, if any</description>
    </attribute>

    <attribute>
      <name>stateId</name>
      <required>true</required>
      <rtexprvalue>true</rtexprvalue>
      <description>ID of hidden form field used to hold the current state</description>
    </attribute>

    <attribute>
      <name>baseUrl</name>
      <required>true</required>
      <rtexprvalue>true</rtexprvalue>
      <description>
        URL of server-side action or servlet that processes a simple command from a toggle action;
        responds with a single option value and label
      </description>
    </attribute>

    <attribute>
      <name>paramName</name>
      <required>true</required>
      <rtexprvalue>true</rtexprvalue>
      <description>
        Name of parameter used to pass search string to server-side action or servlet
      </description>
    </attribute>

    <attribute>
      <name>imageOn</name>
      <required>true</required>
      <rtexprvalue>true</rtexprvalue>
      <description>URL of image used to indicate ON status</description>
    </attribute>

    <attribute>
      <name>imageOff</name>
      <required>true</required>
      <rtexprvalue>true</rtexprvalue>
      <description>URL of image used to indicate OFF status</description>
    </attribute>

    <attribute>
      <name>postFunc</name>
      <required>false</required>
      <rtexprvalue>true</rtexprvalue>
      <description>
        Function to execute after Ajax is finished, allowing for a chain of additional functions to
        execute
      </description>
    </attribute>

    <attribute>
      <name>emptyFunc</name>
      <required>false</required>
      <rtexprvalue>true</rtexprvalue>
      <description>
        Function to execute if there is an empty response
      </description>
    </attribute>

    <attribute>
      <name>errorFunc</name>
      <required>false</required>
      <rtexprvalue>true</rtexprvalue>
      <description>
        Function to execute if there is a server exception (non-200 HTTP response)
      </description>
    </attribute>
  </tag>

  <tag>
    <name>updateField</name>
    <tag-class>org.ajaxtags.tags.AjaxFormFieldTag</tag-class>
    <description>
      Builds the JavaScript required to update one or more form fields based on the value of another
      single field.
    </description>

    <attribute>
      <name>sourceId</name>
      <required>true</required>
      <rtexprvalue>true</rtexprvalue>
      <description>The form field that will hold the parameter passed to the servlet</description>
    </attribute>

    <attribute>
      <name>targetId</name>
      <required>true</required>
      <rtexprvalue>true</rtexprvalue>
      <description>A comma-delimited list of form field IDs that will be populated with results</description>
    </attribute>

    <attribute>
      <name>actionId</name>
      <required>true</required>
      <rtexprvalue>true</rtexprvalue>
      <description>ID of form button or image tag that will fire the onclick event</description>
    </attribute>

    <attribute>
      <name>baseUrl</name>
      <required>true</required>
      <rtexprvalue>true</rtexprvalue>
      <description>
        URL of server-side action or servlet that processes a simple command
      </description>
    </attribute>

    <attribute>
      <name>paramName</name>
      <required>true</required>
      <rtexprvalue>true</rtexprvalue>
      <description>
        Name of parameter used to pass search string to server-side action or servlet
      </description>
    </attribute>

    <attribute>
      <name>postFunc</name>
      <required>false</required>
      <rtexprvalue>true</rtexprvalue>
      <description>
        Function to execute after Ajax is finished, allowing for a chain of additional functions to
        execute
      </description>
    </attribute>

    <attribute>
      <name>emptyFunc</name>
      <required>false</required>
      <rtexprvalue>true</rtexprvalue>
      <description>
        Function to execute if there is an empty response
      </description>
    </attribute>

    <attribute>
      <name>errorFunc</name>
      <required>false</required>
      <rtexprvalue>true</rtexprvalue>
      <description>
        Function to execute if there is a server exception (non-200 HTTP response)
      </description>
    </attribute>
  </tag>

  <tag>
    <name>callout</name>
    <tag-class>org.ajaxtags.tags.AjaxCalloutTag</tag-class>
    <description>
      Builds the JavaScript required to hook a callout or popup balloon to a link, image, or other
      HTML element's onclick event.
    </description>

    <attribute>
      <name>anchorId</name>
      <required>true</required>
      <rtexprvalue>true</rtexprvalue>
      <description>The HTML element to hook the callout to via it's onclick event</description>
    </attribute>

    <attribute>
      <name>classNamePrefix</name>
      <required>true</required>
      <rtexprvalue>true</rtexprvalue>
      <description>
        CSS class name prefix to use for the callout's 'Box', 'Close', and 'Content' elements
      </description>
    </attribute>

    <attribute>
      <name>baseUrl</name>
      <required>true</required>
      <rtexprvalue>true</rtexprvalue>
      <description>
        URL of server-side action or servlet that processes a simple command
      </description>
    </attribute>

    <attribute>
      <name>paramName</name>
      <required>false</required>
      <rtexprvalue>true</rtexprvalue>
      <description>
        Name of parameter used to pass search string to server-side action or servlet
      </description>
    </attribute>

    <attribute>
      <name>paramValue</name>
      <required>false</required>
      <rtexprvalue>true</rtexprvalue>
      <description>Value of query parameter to pass to server-side action or servlet</description>
    </attribute>

    <attribute>
      <name>boxPosition</name>
      <required>false</required>
      <rtexprvalue>true</rtexprvalue>
      <description>
        Position of callout relative to anchor (e.g., 'top-left', 'top-right' [default],
        'bottom-left', or 'bottom-right')
      </description>
    </attribute>

    <attribute>
      <name>useTitleBar</name>
      <required>false</required>
      <rtexprvalue>true</rtexprvalue>
      <description>Indicated whether the title bar should be rendered.</description>
    </attribute>

    <attribute>
      <name>title</name>
      <required>false</required>
      <rtexprvalue>true</rtexprvalue>
      <description>
        Title for callout's box header. If useTitleBar==false and no title is specified, then the
        value attribute of the returned XML will be used as the title.
      </description>
    </attribute>

    <attribute>
      <name>timeout</name>
      <required>false</required>
      <rtexprvalue>true</rtexprvalue>
      <description>
        Timeout setting for callout in milliseconds. No timeout will be used by default.
      </description>
    </attribute>

    <attribute>
      <name>postFunc</name>
      <required>false</required>
      <rtexprvalue>true</rtexprvalue>
      <description>
        Function to execute after Ajax is finished, allowing for a chain of additional functions to
        execute
      </description>
    </attribute>

    <attribute>
      <name>emptyFunc</name>
      <required>false</required>
      <rtexprvalue>true</rtexprvalue>
      <description>
        Function to execute if there is an empty response
      </description>
    </attribute>

    <attribute>
      <name>errorFunc</name>
      <required>false</required>
      <rtexprvalue>true</rtexprvalue>
      <description>
        Function to execute if there is a server exception (non-200 HTTP response)
      </description>
    </attribute>
  </tag>

</taglib>

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
91福利国产成人精品照片| 欧美吞精做爰啪啪高潮| 91无套直看片红桃| 日韩欧美中文一区二区| 亚洲欧美日韩在线| 国产在线一区二区| 欧美精品久久一区二区三区| 国产日韩欧美综合一区| 免费在线看成人av| 91精品1区2区| 国产精品全国免费观看高清| 久久se精品一区精品二区| 91成人免费网站| 中文字幕中文字幕在线一区| 国产精品中文欧美| 日韩美一区二区三区| 午夜久久电影网| 在线观看亚洲成人| 亚洲欧洲日韩av| 国产99久久久久久免费看农村| 日韩午夜电影av| 天天免费综合色| 欧美日韩成人在线| 图片区小说区国产精品视频| 欧美亚洲禁片免费| 激情综合网天天干| 91精品国产色综合久久| 午夜不卡av在线| 欧美日高清视频| 五月激情六月综合| 91精品午夜视频| 无码av中文一区二区三区桃花岛| 在线亚洲免费视频| 一区二区三区四区五区视频在线观看 | 国产欧美日韩激情| 国产高清视频一区| 久久精品人人爽人人爽| 成熟亚洲日本毛茸茸凸凹| 国产欧美一区二区三区在线老狼| 国产精品一级片在线观看| 久久精品网站免费观看| 高清不卡一区二区在线| 国产精品成人午夜| 91豆麻精品91久久久久久| 亚洲第一二三四区| 欧美一区二区性放荡片| 黄色成人免费在线| 国产女同互慰高潮91漫画| av一区二区久久| 亚洲另类春色国产| 欧美精选在线播放| 狠狠色伊人亚洲综合成人| 国产性做久久久久久| 99这里只有精品| 亚洲成人免费视| 日韩精品一区在线| 99综合电影在线视频| 亚洲电影在线免费观看| 日韩午夜小视频| 成熟亚洲日本毛茸茸凸凹| 亚洲图片欧美色图| 精品国产精品一区二区夜夜嗨| 成人在线一区二区三区| 樱花草国产18久久久久| 欧美成人精精品一区二区频| 成人久久18免费网站麻豆| 国产精品456露脸| 亚洲日本丝袜连裤袜办公室| 5858s免费视频成人| 国产成人一区在线| 亚洲v精品v日韩v欧美v专区| 久久久久久影视| 在线精品视频一区二区三四| 激情丁香综合五月| 一区二区三区在线视频观看 | 亚洲一区二区三区在线播放| 欧美一区二区视频观看视频| va亚洲va日韩不卡在线观看| 日韩国产在线一| 亚洲欧美综合另类在线卡通| 日韩一区二区三区电影在线观看 | 三级久久三级久久久| 欧美国产一区二区在线观看| 51精品秘密在线观看| a级高清视频欧美日韩| 另类人妖一区二区av| 亚洲午夜激情网页| 亚洲欧美日本在线| 国产欧美日韩在线观看| 日韩视频在线你懂得| 在线观看国产精品网站| 成人免费av网站| 九色综合狠狠综合久久| 亚洲成人激情社区| 亚洲区小说区图片区qvod| 国产喷白浆一区二区三区| 精品免费日韩av| 欧美二区三区91| 欧美日韩亚州综合| 色999日韩国产欧美一区二区| 国产尤物一区二区| 精品一区二区综合| 日本不卡在线视频| 日韩影院在线观看| 午夜精品久久久久久久99樱桃 | 99久久精品免费看国产免费软件| 精品一区二区在线免费观看| 免费在线观看精品| 蜜桃av一区二区三区电影| 日韩经典一区二区| 青青草国产精品97视觉盛宴| 视频一区视频二区在线观看| 亚洲成人在线观看视频| 亚洲综合色成人| 亚洲制服丝袜一区| 五月天婷婷综合| 视频一区视频二区在线观看| 日韩中文字幕1| 免费在线欧美视频| 国内精品久久久久影院薰衣草| 免费不卡在线观看| 欧美丝袜第三区| 欧美在线播放高清精品| 欧美精品第1页| 欧美一区二区视频在线观看2022 | 五月综合激情日本mⅴ| 天天影视色香欲综合网老头| 日韩av高清在线观看| 精品在线观看视频| 国产伦精品一区二区三区视频青涩| 国产一区激情在线| 丰满岳乱妇一区二区三区| 不卡欧美aaaaa| 色综合天天综合网国产成人综合天 | 日本va欧美va瓶| 久久不见久久见免费视频7 | 国产亚洲短视频| 自拍偷在线精品自拍偷无码专区| 日韩一区日韩二区| 午夜精彩视频在线观看不卡| 久久99精品久久久久久| 国产精品538一区二区在线| 不卡一区中文字幕| 欧美性色aⅴ视频一区日韩精品| 在线不卡一区二区| 久久久久国产免费免费| 中文字幕在线观看一区二区| 亚洲精品国产无天堂网2021| 日本视频中文字幕一区二区三区| 九九国产精品视频| 色综合久久中文字幕综合网| 欧美日韩日日骚| 久久日韩精品一区二区五区| 亚洲日本va午夜在线电影| 午夜a成v人精品| 成人免费视频一区| 欧美日韩一区国产| 中文字幕电影一区| 日韩精品成人一区二区在线| 粉嫩绯色av一区二区在线观看| 欧美艳星brazzers| 国产欧美日韩卡一| 蜜臀av性久久久久蜜臀aⅴ| 成人av综合一区| 欧美一区二区三区免费大片| 亚洲摸摸操操av| 色悠久久久久综合欧美99| 欧美精品一区二区三区蜜桃视频 | 欧美精品欧美精品系列| 欧美国产一区在线| 美女精品一区二区| 色一情一乱一乱一91av| 国产日韩欧美高清| 免费观看成人av| 在线精品亚洲一区二区不卡| 国产日本亚洲高清| 伦理电影国产精品| 欧美一区二区三区在线观看视频 | 欧美电影免费观看完整版| 亚洲视频香蕉人妖| 国产v日产∨综合v精品视频| 91精品国产色综合久久| 亚洲影院久久精品| 97久久精品人人爽人人爽蜜臀| 久久久蜜桃精品| 久久超级碰视频| 欧美精品一级二级三级| 一区二区欧美在线观看| 一本大道av一区二区在线播放| 国产三级欧美三级日产三级99| 另类专区欧美蜜桃臀第一页| 欧美精品第一页| 亚洲成人自拍偷拍| 欧美日韩亚洲综合一区 | 亚洲h在线观看| 欧美自拍偷拍一区| 亚洲精品成人天堂一二三| aaa亚洲精品| 中文字幕一区二区在线观看| 成人黄色一级视频|