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

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

?? spring.ftl

?? 機票預定系統 是面向客戶和管理員的平臺提供 注冊,登陸 查詢預定 退票等服務
?? FTL
字號:
<#-- * spring.ftl * * This file consists of a collection of FreeMarker macros aimed at easing * some of the common requirements of web applications - in particular * handling of forms. * * Spring's FreeMarker support will automatically make this file and therefore * all macros within it available to any application using Spring's * FreeMarkerConfigurer. * * To take advantage of these macros, the "exposeSpringMacroHelpers" property * of the FreeMarker class needs to be set to "true". This will expose a * RequestContext under the name "springMacroRequestContext", as needed by * the macros in this library. * * @author Darren Davison * @author Juergen Hoeller * @since 1.1 --><#-- * message * * Macro to translate a message code into a message. --><#macro message code>${springMacroRequestContext.getMessage(code)}</#macro><#-- * messageText * * Macro to translate a message code into a message, * using the given default text if no message found. --><#macro messageText code, text>${springMacroRequestContext.getMessage(code, text)}</#macro><#-- * url * * Takes a relative URL and makes it absolute from the server root by * adding the context root for the web application. --><#macro url relativeUrl>${springMacroRequestContext.getContextPath()}${relativeUrl}</#macro><#-- * bind * * Exposes a BindStatus object for the given bind path, which can be * a bean (e.g. "person") to get global errors, or a bean property * (e.g. "person.name") to get field errors. Can be called multiple times * within a form to bind to multiple command objects and/or field names. * * This macro will participate in the default HTML escape setting for the given * RequestContext. This can be customized by calling "setDefaultHtmlEscape" * on the "springMacroRequestContext" context variable, or via the * "defaultHtmlEscape" context-param in web.xml (same as for the JSP bind tag). * Also regards a "htmlEscape" variable in the namespace of this library. * * Producing no output, the following context variable will be available * each time this macro is referenced (assuming you import this library in * your templates with the namespace 'spring'): * *   spring.status : a BindStatus instance holding the command object name, *   expression, value, and error messages and codes for the path supplied * * @param path : the path (string value) of the value required to bind to. *   Spring defaults to a command name of "command" but this can be overridden *   by user config. --><#macro bind path>    <#if htmlEscape?exists>        <#assign status = springMacroRequestContext.getBindStatus(path, htmlEscape)>    <#else>        <#assign status = springMacroRequestContext.getBindStatus(path)>    </#if>    <#-- assign a temporary value, forcing a string representation for any    kind of variable.  This temp value is only used in this macro lib -->    <#if status.value?exists && status.value?is_boolean>        <#assign stringStatusValue=status.value?string>    <#else>        <#assign stringStatusValue=status.value?default("")>    </#if></#macro><#-- * bindEscaped * * Similar to spring:bind, but takes an explicit HTML escape flag rather * than relying on the default HTML escape setting. --><#macro bindEscaped path, htmlEscape>    <#assign status = springMacroRequestContext.getBindStatus(path, htmlEscape)>    <#-- assign a temporary value, forcing a string representation for any    kind of variable.  This temp value is only used in this macro lib -->    <#if status.value?exists && status.value?is_boolean>        <#assign stringStatusValue=status.value?string>    <#else>        <#assign stringStatusValue=status.value?default("")>    </#if></#macro><#-- * formInput * * Display a form input field of type 'text' and bind it to an attribute * of a command or bean. * * @param path the name of the field to bind to * @param attributes any additional attributes for the element (such as class *    or CSS styles or size --><#macro formInput path attributes="" fieldType="text" >    <@bind path/>    <input type="${fieldType}" id="${status.expression}" name="${status.expression}" value="<#if fieldType!="password">${stringStatusValue}</#if>" ${attributes}    <@closeTag/></#macro><#-- * formPasswordInput * * Display a form input field of type 'password' and bind it to an attribute * of a command or bean.  No value will ever be displayed.  This functionality * can also be obtained by calling the formInput macro with a 'type' parameter * of 'password' * * @param path the name of the field to bind to * @param attributes any additional attributes for the element (such as class *    or CSS styles or size --><#macro formPasswordInput path attributes="" >    <@formInput path, attributes, "password"/></#macro><#-- * formHiddenInput * * Generate a form input field of type 'hidden' and bind it to an attribute * of a command or bean.  This functionality can also be obtained by calling * the formInput macro with a 'type' parameter of 'hidden' * * @param path the name of the field to bind to * @param attributes any additional attributes for the element (such as class *    or CSS styles or size --><#macro formHiddenInput path attributes="" >    <@formInput path, attributes, "hidden"/></#macro><#-- * formTextarea * * Display a text area and bind it to an attribute of a command or bean. * * @param path the name of the field to bind to * @param attributes any additional attributes for the element (such as class *    or CSS styles or size --><#macro formTextarea path attributes="" >    <@bind path/>    <textarea id="${status.expression}" name="${status.expression}" ${attributes}>${stringStatusValue}</textarea></#macro><#-- * formSingleSelect * * Show a selectbox (dropdown) input element allowing a single value to be chosen * from a list of options. * * @param path the name of the field to bind to * @param options a map (value=label) of all the available options * @param attributes any additional attributes for the element (such as class *    or CSS styles or size--><#macro formSingleSelect path options attributes="">    <@bind path/>    <select id="${status.expression}" name="${status.expression}" ${attributes}>        <#list options?keys as value>        <option value="${value}"<@checkSelected value/>>${options[value]}</option>        </#list>    </select></#macro><#-- * formMultiSelect * * Show a listbox of options allowing the user to make 0 or more choices from * the list of options. * * @param path the name of the field to bind to * @param options a map (value=label) of all the available options * @param attributes any additional attributes for the element (such as class *    or CSS styles or size--><#macro formMultiSelect path options attributes="">    <@bind path/>    <select multiple="multiple" id="${status.expression}" name="${status.expression}" ${attributes}>        <#list options?keys as value>        <#assign isSelected = contains(status.value?default([""]), value)>        <option value="${value}" <#if isSelected>selected="selected"</#if>>${options[value]}</option>        </#list>    </select></#macro><#-- * formRadioButtons * * Show radio buttons. * * @param path the name of the field to bind to * @param options a map (value=label) of all the available options * @param separator the html tag or other character list that should be used to *    separate each option.  Typically '&nbsp;' or '<br>' * @param attributes any additional attributes for the element (such as class *    or CSS styles or size--><#macro formRadioButtons path options separator attributes="">    <@bind path/>    <#list options?keys as value>    <input type="radio" id="${status.expression}" name="${status.expression}" value="${value}"        <#if stringStatusValue == value>checked="checked"</#if> ${attributes}    <@closeTag/>    ${options[value]}${separator}    </#list></#macro><#-- * formCheckboxes * * Show checkboxes. * * @param path the name of the field to bind to * @param options a map (value=label) of all the available options * @param separator the html tag or other character list that should be used to *    separate each option.  Typically '&nbsp;' or '<br>' * @param attributes any additional attributes for the element (such as class *    or CSS styles or size--><#macro formCheckboxes path options separator attributes="">    <@bind path/>    <#list options?keys as value>    <#assign isSelected = contains(status.value?default([""]), value)>    <input type="checkbox" id="${status.expression}" name="${status.expression}" value="${value}"        <#if isSelected>checked="checked"</#if> ${attributes}    <@closeTag/>    ${options[value]}${separator}    </#list></#macro><#-- * showErrors * * Show validation errors for the currently bound field, with * optional style attributes. * * @param separator the html tag or other character list that should be used to *    separate each option. Typically '<br>'. * @param classOrStyle either the name of a CSS class element (which is defined in *    the template or an external CSS file) or an inline style.  If the value passed in here *    contains a colon (:) then a 'style=' attribute will be used, else a 'class=' attribute *    will be used.--><#macro showErrors separator classOrStyle="">    <#list status.errorMessages as error>    <#if classOrStyle == "">        <b>${error}</b>    <#else>        <#if classOrStyle?index_of(":") == -1><#assign attr="class"><#else><#assign attr="style"></#if>        <span ${attr}="${classOrStyle}">${error}</span>    </#if>    <#if error_has_next>${separator}</#if>    </#list></#macro><#-- * checkSelected * * Check a value in a list to see if it is the currently selected value. * If so, add the 'selected="selected"' text to the output. * Handles values of numeric and string types. * This function is used internally but can be accessed by user code if required. * * @param value the current value in a list iteration--><#macro checkSelected value>    <#if stringStatusValue?is_number && stringStatusValue == value?number>selected="selected"</#if>    <#if stringStatusValue?is_string && stringStatusValue == value>selected="selected"</#if></#macro><#-- * contains * * Macro to return true if the list contains the scalar, false if not. * Surprisingly not a FreeMarker builtin. * This function is used internally but can be accessed by user code if required. * * @param list the list to search for the item * @param item the item to search for in the list * @return true if item is found in the list, false otherwise--><#function contains list item>    <#list list as nextInList>    <#if nextInList == item><#return true></#if>    </#list>    <#return false></#function><#-- * closeTag * * Simple macro to close an HTML tag that has no body with '>' or '/>', * depending on the value of a 'xhtmlCompliant' variable in the namespace * of this library.--><#macro closeTag>    <#if xhtmlCompliant?exists && xhtmlCompliant>/><#else>></#if></#macro>

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美激情在线看| 国产欧美日韩麻豆91| 成人三级在线视频| 国产成人免费视频| 国产在线精品视频| 国产精品18久久久久久久网站| 视频在线观看一区| 天堂蜜桃91精品| 免费一级欧美片在线观看| 午夜日韩在线电影| 免费看欧美女人艹b| 久久激五月天综合精品| 激情综合网av| 成人中文字幕合集| 91久久精品一区二区三| 欧美三级中文字| 日韩欧美国产系列| 国产农村妇女毛片精品久久麻豆 | 亚洲成人福利片| 天天操天天色综合| 国产一区二三区| 成人免费av网站| 欧美日韩精品是欧美日韩精品| 日韩一区二区免费高清| 国产日韩欧美精品一区| 亚洲激情自拍偷拍| 久久99蜜桃精品| 色综合天天综合网天天狠天天| 欧美日韩极品在线观看一区| 精品国产乱码久久久久久免费| 国产精品情趣视频| 视频一区视频二区中文字幕| 粉嫩欧美一区二区三区高清影视 | 久久久午夜电影| 亚洲三级电影全部在线观看高清| 亚洲一区二区欧美激情| 国内一区二区在线| 在线观看日韩国产| 欧美极品美女视频| 水蜜桃久久夜色精品一区的特点| 国产成人精品午夜视频免费| 欧美日韩和欧美的一区二区| 久久久精品国产免大香伊| 午夜欧美一区二区三区在线播放| 国产精品资源站在线| 欧美日免费三级在线| 国产精品私人影院| 另类人妖一区二区av| 欧美午夜一区二区三区免费大片| 久久久国产一区二区三区四区小说 | 免费在线观看一区| 色婷婷久久99综合精品jk白丝 | av中文字幕亚洲| 欧美tickling挠脚心丨vk| 一区二区三区美女视频| 国产一区不卡精品| 欧美电影一区二区三区| 亚洲色图视频免费播放| 粉嫩久久99精品久久久久久夜| 3d动漫精品啪啪1区2区免费 | 中文字幕一区二区三中文字幕| 美女视频第一区二区三区免费观看网站| www.欧美日韩国产在线| 国产午夜精品美女毛片视频| 久久精品国产精品亚洲红杏| 欧美日韩免费观看一区二区三区| 中文字幕一区二区三区四区不卡| 国产一区二区导航在线播放| 欧美不卡在线视频| 久久er99精品| 久久久不卡网国产精品二区| 极品少妇xxxx精品少妇偷拍| 精品国产污网站| 国产麻豆一精品一av一免费| 精品国产精品网麻豆系列| 蜜臀av一区二区在线免费观看 | 久久久影视传媒| 国内外成人在线视频| 久久久久久久久蜜桃| 国产精品影音先锋| 国产精品欧美精品| 91理论电影在线观看| 一区二区三区中文在线| 欧美亚一区二区| 午夜欧美2019年伦理 | 国产精品综合二区| 国产欧美日韩不卡| 97久久精品人人做人人爽50路| 国产精品人人做人人爽人人添 | 麻豆精品新av中文字幕| 日韩精品一区二区三区中文不卡| 国产一区二区三区电影在线观看| 久久久久久久精| 91丨porny丨蝌蚪视频| 一区二区三区高清不卡| 欧美精品v国产精品v日韩精品| 婷婷激情综合网| 精品第一国产综合精品aⅴ| 国产精品伊人色| 亚洲国产人成综合网站| 日韩欧美激情在线| 成人福利视频在线| 香蕉加勒比综合久久| 欧美xxxxx牲另类人与| 成人精品视频一区| 亚洲成国产人片在线观看| 久久综合色鬼综合色| 99久久亚洲一区二区三区青草| 五月综合激情婷婷六月色窝| 日本一区二区三区视频视频| 日本乱人伦aⅴ精品| 蜜臀av国产精品久久久久| 国产精品久久久久久妇女6080| 在线观看欧美日本| 国内精品写真在线观看| 樱花影视一区二区| 国产亚洲一区二区三区| 欧美影片第一页| 国产福利91精品一区二区三区| 一区二区三区不卡在线观看| 2023国产精品自拍| 欧美日韩国产小视频在线观看| 国产精品亚洲成人| 日韩国产一二三区| 亚洲美女区一区| 国产日韩欧美a| 日韩精品一区二区三区中文不卡| 91蜜桃在线观看| 成人免费视频一区| 美女视频黄a大片欧美| 香蕉成人伊视频在线观看| 中文字幕一区二区三中文字幕 | eeuss鲁片一区二区三区在线观看| 午夜精品福利一区二区蜜股av| 国产精品久久精品日日| 久久你懂得1024| 欧美一级日韩不卡播放免费| 日本韩国一区二区| 成人app在线| 成人中文字幕电影| 处破女av一区二区| 国产精品中文字幕欧美| 国产一区二区调教| 国精产品一区一区三区mba桃花| 午夜精品一区二区三区免费视频 | 午夜私人影院久久久久| 亚洲欧美一区二区三区久本道91| 国产亚洲成年网址在线观看| 精品国产一区二区亚洲人成毛片| 欧美一个色资源| 日韩欧美国产三级电影视频| 在线综合+亚洲+欧美中文字幕| 欧美日韩一区二区三区高清 | 久久99最新地址| 免费在线观看一区二区三区| 奇米色一区二区| 另类中文字幕网| 国产精品91一区二区| 国产v综合v亚洲欧| 成人av网站在线| 色综合 综合色| 欧美色手机在线观看| 91精品啪在线观看国产60岁| 91精品欧美综合在线观看最新| 欧美一区二区久久| 久久免费电影网| 国产精品美女视频| 亚洲一区二区三区四区在线免费观看 | 国产精品久久久久四虎| 亚洲人成影院在线观看| 亚洲女子a中天字幕| 亚洲大片免费看| 韩国女主播成人在线| 成人午夜免费电影| 欧美综合在线视频| 日韩精品一区二| 综合在线观看色| 午夜伦理一区二区| 国产成人aaa| 欧美日精品一区视频| 精品sm捆绑视频| 综合久久久久久| 久久狠狠亚洲综合| av一区二区三区在线| 欧美精品国产精品| 亚洲欧洲一区二区在线播放| 午夜影院久久久| 国产成人av网站| 欧美日韩亚洲综合在线| 久久中文字幕电影| 亚洲午夜视频在线观看| 韩日av一区二区| 欧美色综合天天久久综合精品| 精品国一区二区三区| 一区二区三区日韩| 国产经典欧美精品| 欧美日韩中文另类| 综合激情成人伊人| 国产九九视频一区二区三区| 欧美日韩电影一区|