给定一个输入字段,任务是设置 HTML 中输入字段中允许的最小/最大字符数。
- 要设置输入字段中的最大字符限制,我们使用 maxlength 属性。此属性用于指定输入到 元素中的最大字符数。
- 要设置输入字段中的最小字符限制,我们使用 minlength 属性。此属性用于指定输入到 元素中的最少字符数。
句法:
属性值:
- number1:它包含单值数字,它允许 元素中的最大字符数。其默认值为 524288。
- number2:输入字段中所需的最小字符数。
示例 1:设置输入字段中允许的最大字符数限制。
HTML
GeeksforGeeks
How to specify the maximum number
of characters
allowed in an
input field in HTML?
HTML
GeeksforGeeks
How to specify the minimum number
of characters
allowed in an
input field in HTML?
输出:
示例 2:设置输入字段中允许的最小字符数限制。
HTML
GeeksforGeeks
How to specify the minimum number
of characters
allowed in an
input field in HTML?
输出: