Thymeleaf 和输入文本约束
Thymeleaf and input text constraints
我是 Thymeleaf 的新手,我在做一些简单的事情时遇到了一些问题...
我想知道例如,在一个表单中,我有一个输入文本,我想将它限制为只有一个字符长。可能吗 ?
同样的问题,但是否可以有一个输入文本,用户只能输入数字而不是字符? (我不想要输入类型=数字",我真的需要一些文本格式的东西)。
谢谢大家的回答!
- 要限制可以在输入标签中输入的字符长度,您可以使用 maxlength 属性。
- 要将输入限制为数字,您需要编写一个 javascript 函数,将其绑定到您的输入标签。
记得
Thymeleaf is a Java library. It is an XML / XHTML / HTML5 template
engine (extensible to other formats) that can work both in web and
non-web environments. It is better suited for serving XHTML/HTML5 at
the view layer of web applications, but it can process any XML file
even in offline environments.
quoted from Thymeleaf homepage
Thymeleaf 不负责用户如何与 html 页面交互。例如按钮点击,限制输入
我是 Thymeleaf 的新手,我在做一些简单的事情时遇到了一些问题...
我想知道例如,在一个表单中,我有一个输入文本,我想将它限制为只有一个字符长。可能吗 ? 同样的问题,但是否可以有一个输入文本,用户只能输入数字而不是字符? (我不想要输入类型=数字",我真的需要一些文本格式的东西)。
谢谢大家的回答!
- 要限制可以在输入标签中输入的字符长度,您可以使用 maxlength 属性。
- 要将输入限制为数字,您需要编写一个 javascript 函数,将其绑定到您的输入标签。
记得
Thymeleaf is a Java library. It is an XML / XHTML / HTML5 template engine (extensible to other formats) that can work both in web and non-web environments. It is better suited for serving XHTML/HTML5 at the view layer of web applications, but it can process any XML file even in offline environments. quoted from Thymeleaf homepage
Thymeleaf 不负责用户如何与 html 页面交互。例如按钮点击,限制输入