validate-style.ftl

来自「JSP(Java Server Pages)是由Sun Microsystems」· FTL 代码 · 共 9 行

FTL
9
字号
${tag.addParameter("cssClass", "p-textfield-normal")}<#rt/>
${tag.addParameter("onclick", "$(this).attr({'class':'p-textfield-focus','errorMsg': ''});")}<#rt/>
<#if (parameters.form.validate?default(false) == true)>
${tag.addParameter("onblur", "validateField_${parameters.name?replace('.', '_')}(this)")}<#rt/>
<#else>
${tag.addParameter("onblur", "$(this).attr({'class':'p-textfield-normal','errorMsg': ''});")}<#rt/>
</#if>
${tag.addParameter("onmouseover", "showErrorMsg(this);")}<#rt/>
${tag.addParameter("onmouseout", "hideErrorMsg();")}<#rt/>

⌨️ 快捷键说明

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