亚洲欧美第一页_禁久久精品乱码_粉嫩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一区二区三区免费野_久草精品视频
欧美本精品男人aⅴ天堂| 青青草精品视频| 欧美—级在线免费片| 在线综合视频播放| 在线免费视频一区二区| 成人午夜免费av| 国产在线视频不卡二| 国内一区二区在线| 国产老女人精品毛片久久| 偷窥少妇高潮呻吟av久久免费| 午夜精品福利一区二区蜜股av| 视频一区欧美精品| 国内精品国产成人| 99久久国产综合精品色伊| 91丨porny丨国产入口| 91成人免费在线视频| 精品一区二区三区欧美| 国产一区二区三区四| 国产精品一区三区| 91啪在线观看| 欧美一区二区日韩一区二区| 精品第一国产综合精品aⅴ| 国产精品久久久久一区二区三区 | 国产精品一区二区91| 成人国产视频在线观看| 在线免费观看视频一区| 欧美一卡二卡三卡| 亚洲国产精品精华液2区45| 亚洲综合网站在线观看| 免费在线一区观看| 一本一道波多野结衣一区二区 | 制服丝袜激情欧洲亚洲| 久久综合九色综合欧美就去吻| 国产精品理伦片| 人人狠狠综合久久亚洲| 99在线视频精品| 精品久久久三级丝袜| 亚洲久草在线视频| 国产精品538一区二区在线| 欧美日韩亚洲国产综合| 国产精品久久久久7777按摩| 五月天丁香久久| 91美女在线看| 久久久久久久久久久久电影| 亚洲国产视频a| 波多野结衣亚洲| 精品国产一区a| 午夜精品爽啪视频| 色狠狠桃花综合| 国产女主播视频一区二区| 欧美aaaaaa午夜精品| 欧美性猛片aaaaaaa做受| 欧美激情中文不卡| 韩国一区二区视频| 日韩欧美国产一区二区在线播放| 亚洲精品中文字幕乱码三区| 高清av一区二区| 久久综合九色综合久久久精品综合 | 精品久久久久久久一区二区蜜臀| 亚洲伦理在线精品| 色美美综合视频| 亚洲同性gay激情无套| 成人不卡免费av| 国产精品狼人久久影院观看方式| 国产美女精品在线| 久久久久久久精| 激情欧美日韩一区二区| 日韩亚洲欧美在线观看| 免费的国产精品| 欧美xingq一区二区| 另类成人小视频在线| 日韩精品资源二区在线| 久久精品av麻豆的观看方式| 日韩欧美国产三级电影视频| 午夜精品在线视频一区| 欧美一区二区黄| 另类小说欧美激情| 久久久久久久久岛国免费| 国产盗摄视频一区二区三区| 国产网红主播福利一区二区| 丁香激情综合五月| 亚洲天堂精品视频| 日本韩国一区二区三区| 日本特黄久久久高潮| 欧美一区二区三区视频免费| 激情另类小说区图片区视频区| 欧美一级日韩一级| 国内成人精品2018免费看| 2023国产精品自拍| 99视频一区二区三区| 亚洲一区自拍偷拍| 日韩三级视频在线看| 精品一区二区三区免费播放| 中文字幕乱码一区二区免费| 色呦呦国产精品| 免费亚洲电影在线| 国产精品午夜久久| 欧美日韩在线播放| 国产一区二区三区黄视频 | 亚洲福利视频三区| 日韩欧美国产小视频| 成人黄色免费短视频| 亚洲成va人在线观看| 久久久99精品免费观看不卡| 91国产精品成人| 国产一区二区三区不卡在线观看| 亚洲视频在线一区二区| 欧美一级片免费看| 91原创在线视频| 久久精品久久精品| 一区二区成人在线| 久久久久久99久久久精品网站| 91黄色免费版| 国产aⅴ精品一区二区三区色成熟| 一区二区三区在线看| 久久久精品欧美丰满| 欧美精品少妇一区二区三区 | 亚洲精品成a人| 精品免费国产一区二区三区四区| 91在线视频免费91| 激情久久五月天| 亚洲一区二区三区四区不卡| 欧美国产一区在线| 欧美videos中文字幕| 欧美蜜桃一区二区三区 | 亚洲一级在线观看| 亚洲国产精品精华液ab| 精品国产人成亚洲区| 欧美视频一二三区| 91亚洲精品久久久蜜桃| 国产精品一区二区三区99| 麻豆一区二区三| 午夜成人免费视频| 一区二区三区四区精品在线视频| 日本一区二区三区电影| 久久伊人中文字幕| 亚洲精品一区二区三区在线观看| 欧美精品一卡二卡| 欧美日韩午夜在线| 欧美午夜一区二区| 日本电影欧美片| 色综合久久久久综合体桃花网| 国产不卡视频在线播放| 国产精品一区免费视频| 国产剧情av麻豆香蕉精品| 激情深爱一区二区| 国产精品一区一区三区| 国产999精品久久久久久绿帽| 国产在线观看免费一区| 蜜桃av一区二区| 黄色日韩网站视频| 精品一区二区在线免费观看| 麻豆国产精品777777在线| 久久精品国产**网站演员| 狠狠色丁香久久婷婷综合丁香| 久久99精品久久久久婷婷| 九九九久久久精品| 国产做a爰片久久毛片| 国产一区在线视频| 国产成人在线视频网址| 91丨porny丨户外露出| 欧美主播一区二区三区| 欧美日精品一区视频| 日韩欧美在线网站| 久久蜜桃av一区二区天堂 | 亚洲激情六月丁香| 依依成人综合视频| 视频一区在线播放| 精品一区二区三区不卡 | 麻豆免费精品视频| 久久精品噜噜噜成人av农村| 国产成a人亚洲精| 91久久精品日日躁夜夜躁欧美| 欧美精品123区| 国产日韩欧美制服另类| 亚洲精品视频自拍| 免费在线看成人av| 成人黄色在线视频| 欧美日韩一区小说| 国产欧美日韩不卡免费| 亚洲一线二线三线视频| 久久国内精品自在自线400部| 成人自拍视频在线| 欧美区视频在线观看| 国产精品素人一区二区| 日韩中文字幕一区二区三区| 国产麻豆视频一区二区| 欧美日韩中文字幕一区二区| 久久婷婷色综合| 亚洲国产精品久久久男人的天堂| 国产一区中文字幕| 在线成人午夜影院| 亚洲欧美综合另类在线卡通| 蜜臀久久99精品久久久画质超高清 | 亚洲一区二区三区视频在线| 极品瑜伽女神91| 欧美日产在线观看| 一区在线观看视频| 精品一区二区免费视频| 欧美日韩精品一区二区三区四区 |