HTML DOM textarea minlength属性用于设置或返回textarea字段的minlength属性的值。它指定元素中允许的最小字符数。
用法:
- 它返回minLength属性。
textareaObject.minLength
- 它用于设置minLength属性。
textareaObject.minLength = number
属性值:
- number:它指定textarea元素中允许的最少字符数。
返回值:它返回一个数字值,该值表示Textarea字段中允许的最小字符数。
范例1:HTML程序说明如何返回maxlength属性。
<!DOCTYPE html>
<html>
<body>
<center>
<h1 style="color:green;
font-style:italic;">
GeeksforGeeks
</h1>
<h2 style="color:green;
font-style:italic;">
DOM Textarea minlength Property
</h2>
<textarea rows="4" cols="50"
id="GFG" minlength="6">
write here....
</textarea>
<br><br>
<button onclick="myGeeks()">
Submit
</button>
<p id="sudo"></p>
<script>
function myGeeks() {
// Return max length allowed in the textarea field.
var x = document.getElementById("GFG").minLength;
document.getElementById("sudo").innerHTML =
"There are only " + x + " minimum characters" +
"are allowed in a Textarea Field.";;
}
</script>
</body>
</html>
输出:
- 在单击按钮之前:
- 单击按钮后:
例子:HTML程序说明如何设置minlength属性。
<!DOCTYPE html>
<html>
<body>
<center>
<h1 style="color:green;
font-style:italic;">
GeeksforGeeks
</h1>
<h2 style="color:green;
font-style:italic;">
DOM Textarea minlength Property
</h2>
<textarea rows="4" cols="50" id="GFG" minlength="6">
write here....
</textarea>
<br>
<br>
<button onclick="myGeeks()">
Submit
</button>
<p id="sudo"></p>
<script>
function myGeeks() {
// Return max length allowed in the textarea field.
var x = document.getElementById("GFG").minLength = "9";
document.getElementById("sudo").innerHTML =
"There are only " + x + " minimum characters" +
"are allowed in a Textarea Field.";;
}
</script>
</body>
</html>
输出:
- 在单击按钮之前:
- 单击按钮后:
相关用法
- HTML <Textarea> minlength属性用法及代码示例
- HTML Input Text minLength用法及代码示例
- HTML Textarea name用法及代码示例
- HTML Textarea autocomplete用法及代码示例
- HTML Textarea autofocus用法及代码示例
- HTML Textarea placeholder用法及代码示例
- HTML Textarea required用法及代码示例
- HTML Textarea rows用法及代码示例
- HTML Textarea form用法及代码示例
- HTML Textarea maxlength用法及代码示例
- HTML Textarea readOnly用法及代码示例
- HTML Textarea wrap用法及代码示例
- HTML Textarea defaultValue用法及代码示例
- HTML Textarea cols用法及代码示例
- HTML Textarea disabled用法及代码示例
注:本文由纯净天空筛选整理自ManasChhabra2大神的英文原创作品 HTML | DOM textarea minlength Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。