如何在 HTML 模板语言 (HTL) 中编写隐藏的输入字段
How to write hidden input field in HTML Template Language (HTL)
在 HTML 模板语言 (HTL) 中包含隐藏字段的语法是什么?
在jsp中我们可以写成
<input type="hidden" id="thisField" name="inputName" value="hiddenValue"/>
您将在 HTL 中执行完全相同的操作。
<input type="hidden" id="thisField" name="inputName" value="hiddenValue"/>
在 HTML 模板语言 (HTL) 中包含隐藏字段的语法是什么?
在jsp中我们可以写成
<input type="hidden" id="thisField" name="inputName" value="hiddenValue"/>
您将在 HTL 中执行完全相同的操作。
<input type="hidden" id="thisField" name="inputName" value="hiddenValue"/>