在test.html页面中
<#form:form id="searchForm">
<input type="text"/>
<#form>
在htmltags中 form模板中
<form id="${id}" action="${action}" method="${method}" class="${class}">
这里如何写获取传过来的子元素呢,
</form>
已解决 使用 ${tagBody}进行获取
<#form:form id="searchForm" model="${model}">
<#form:input path="name"/>
<#form>
如何在input标签中获取 name 的value值呢