form.ftl

来自「jeecms网站管理系统,jeecms网站管理系统,jeecms网站管理系统」· FTL 代码 · 共 44 行

FTL
44
字号
<#--
<form></form>
-->
<#macro form
	action="" namespace="" method="post" target="" enctype="" acceptCharset="" suffix=".do" 
	theme="jeesys" width="100%" tableClass="pn-ftable" labelWidth="20" required="false" colspan="1"
	validate="false" query="true"
	id="" name="" class="" style="" size="" title="" disabled="" tabindex="" accesskey=""
	onsubmit=""
	>
<form<#rt/>
 method="${method}"<#rt/>
<#if namespace!="">
 action="${base+namespace+'/'+action+suffix}"<#rt/>
<#else>
 action="${action+suffix}"<#rt/>
</#if>
<#if id!=""> id="${id}"</#if><#rt/>
<#if target!=""> target="${target}"</#if><#rt/>
<#if enctype!=""> enctype="${enctype}"</#if><#rt/>
<#if onsubmit!=""> onsubmit="${onsubmit}"</#if><#rt/>
<#if acceptCharset!=""> accept-charset="${acceptCharset}"</#if><#rt/>
<#include "common-attributes.ftl"/><#rt/>
>
<#if query=="true">
<@p.hidden name="pageNo" /><#rt/>
<#list Parameters?keys as pkey>
  <#if pkey?starts_with('query')>
	<@p.hidden name="${pkey}" /><#t/>
  </#if>
</#list>
</#if>
<#if theme!="simple">
<#assign labelWidth=labelWidth/>
<table width="${width}" class="${tableClass}" cellpadding="2" cellspacing="1" border="0">
<tr>
</#if>
<#nested/><#rt/>
<#if theme=="jeesys">
</tr></table>
</#if>
</form>
</#macro>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?