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

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

?? spring.ftl

?? eclipse中開發的航空票務系統源代碼
?? 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一区二区三区免费野_久草精品视频
日本va欧美va精品| 免费国产亚洲视频| 亚洲一区二区三区四区五区中文| 精品国产成人在线影院| 日本韩国精品一区二区在线观看| 国产一区二区久久| 国产精品一区不卡| 久久9热精品视频| 日韩av电影免费观看高清完整版 | 国产福利一区二区三区视频| 青娱乐精品在线视频| 成人精品国产一区二区4080| 久久99精品久久久久久动态图| 老司机免费视频一区二区三区| 在线免费一区三区| 91.com在线观看| 欧美日韩午夜精品| 5566中文字幕一区二区电影| 亚洲图片激情小说| 亚洲一级二级在线| 99re这里只有精品首页| 欧美午夜精品一区二区三区 | 国产91精品露脸国语对白| 国产成人精品一区二区三区网站观看| 欧美日韩国产欧美日美国产精品| 欧美一级理论片| 日韩精品一区二区三区swag| 久久久久久一级片| 最新高清无码专区| 91在线观看高清| 欧美在线一二三| 亚洲一区免费视频| 欧美午夜在线一二页| 亚洲一区二区不卡免费| 色噜噜夜夜夜综合网| 亚洲欧美一区二区三区国产精品 | 免费成人在线网站| 欧美一区二区三区在线观看| 国产女同性恋一区二区| 亚洲免费av高清| 一本到一区二区三区| 欧美日韩不卡一区二区| 五月激情六月综合| 国产精品一区二区你懂的| wwwwww.欧美系列| 亚洲一区二区美女| 欧美精三区欧美精三区| 国产情人综合久久777777| 懂色av噜噜一区二区三区av| 欧美激情一区二区三区| 日本午夜精品一区二区三区电影| 日韩欧美国产综合一区| 蜜臀av一级做a爰片久久| 99国产精品国产精品久久| 亚洲欧美日韩系列| 91超碰这里只有精品国产| 蜜乳av一区二区| 国产精品久久久99| 极品少妇一区二区三区精品视频| 26uuu精品一区二区| 不卡av免费在线观看| 一区二区国产视频| fc2成人免费人成在线观看播放 | 99精品一区二区| 一区二区三区精品在线观看| 欧美日韩第一区日日骚| 国产一区在线不卡| 一区二区三区中文字幕电影| 欧美一区二区黄色| eeuss鲁一区二区三区| 三级亚洲高清视频| 成人一区在线观看| www一区二区| 欧美色综合网站| 国产精品一二三| 亚洲超丰满肉感bbw| 色8久久精品久久久久久蜜| 蜜臀精品久久久久久蜜臀 | 欧美在线色视频| 久久99热这里只有精品| 丝袜美腿亚洲一区| 国产精品网站在线播放| 国产成人在线色| 日日摸夜夜添夜夜添国产精品| 久久久精品中文字幕麻豆发布| 欧美肥大bbwbbw高潮| 不卡视频免费播放| 国产一区二区三区在线观看精品| 亚洲国产综合人成综合网站| 欧美肥妇free| 色视频成人在线观看免| 国产美女久久久久| 奇米精品一区二区三区在线观看| 最好看的中文字幕久久| 日本一区二区三区在线观看| 日韩欧美在线1卡| 欧美剧情电影在线观看完整版免费励志电影| 国产成人亚洲综合a∨婷婷图片| 日本伊人午夜精品| 亚洲一区二区三区四区五区黄| 亚洲精品美腿丝袜| 欧美午夜电影网| 99久久精品国产观看| 成人网页在线观看| 国产电影精品久久禁18| 狠狠色综合播放一区二区| 国产精品成人在线观看| 久久美女艺术照精彩视频福利播放| 欧美一级日韩免费不卡| 欧美精品aⅴ在线视频| 91久久久免费一区二区| 91美女在线看| 色综合欧美在线视频区| www.欧美精品一二区| 成人av在线看| 99久久精品国产一区二区三区| 成+人+亚洲+综合天堂| 成人精品国产免费网站| 丰满少妇久久久久久久| 成人一区二区三区视频在线观看| 精品无码三级在线观看视频| 国产一区二区三区免费| 国产成人一区在线| 91在线码无精品| 在线一区二区三区做爰视频网站| 色88888久久久久久影院野外| 色女孩综合影院| 91精品国产一区二区人妖| 日韩精品一区二区在线观看| 国产午夜精品一区二区三区嫩草| 在线视频一区二区三区| 欧美日韩一区三区四区| 欧美久久久久久久久| 久久亚洲免费视频| 国产精品美女久久久久久| 亚洲精品视频自拍| 天堂久久一区二区三区| 久久99精品久久久久久久久久久久 | 久久99精品久久只有精品| 国产成人免费视频精品含羞草妖精 | 91精品欧美综合在线观看最新| 日韩欧美不卡在线观看视频| 久久久精品2019中文字幕之3| 中文字幕一区不卡| 久久美女艺术照精彩视频福利播放 | 国产欧美精品区一区二区三区| 国产精品久久三| 午夜久久久影院| 国产麻豆成人精品| 91黄色免费网站| 久久久久久久久久久黄色| 综合欧美一区二区三区| 美女爽到高潮91| 91视视频在线观看入口直接观看www | 国产精品538一区二区在线| 91免费看片在线观看| 欧美一区二区三区成人| 中文字幕一区三区| 日韩av午夜在线观看| eeuss鲁片一区二区三区| 69堂精品视频| 亚洲人一二三区| 国内成人精品2018免费看| 色伊人久久综合中文字幕| 日韩精品一区二区三区在线观看| 成人欧美一区二区三区小说 | www国产成人免费观看视频 深夜成人网 | 国产欧美精品一区二区三区四区 | 久久免费偷拍视频| 日欧美一区二区| 91视频免费播放| 久久久久国产精品人| 日韩va亚洲va欧美va久久| 色综合色狠狠天天综合色| 国产女同性恋一区二区| 美女诱惑一区二区| 欧美精品色综合| 亚洲综合丝袜美腿| 不卡一区二区三区四区| 2023国产一二三区日本精品2022| 日韩中文字幕不卡| 欧美在线三级电影| 亚洲欧美综合色| 岛国一区二区在线观看| 精品少妇一区二区三区免费观看| 精品久久人人做人人爰| 亚洲第一成人在线| 91国产成人在线| 亚洲欧美一区二区久久 | 夜夜操天天操亚洲| 成人av综合在线| 国产精品高清亚洲| 粉嫩13p一区二区三区| 久久久天堂av| 国产白丝网站精品污在线入口| 精品国产第一区二区三区观看体验| 日本亚洲最大的色成网站www| 3d成人动漫网站| 奇米精品一区二区三区在线观看| 制服.丝袜.亚洲.中文.综合 |