HTML DOM中的输入URL minLength属性用于设置或返回URL输入字段的minlength属性值。它指定URL字段中允许的最小字符数。
用法:
- 它返回Input url minLength属性。
urlObject.minLength
- 它用于设置Input url minLength属性。
urlObject.minLength = number
- 在单击按钮之前:
- 单击按钮后:
- 在单击按钮之前:
- 单击按钮后:
- 谷歌浏览器
- IE浏览器
- Firefox
- 苹果Safari
- Opera
属性值:它包含一个值,用于指定URL minlength字段中允许的最小字符数。
返回值:它返回一个数字值,该值表示URL minlength字段中允许的最小字符数。
范例1:本示例说明了如何返回Input URL minLength属性。
<!DOCTYPE html>
<html>
<head>
<title>
DOM Input URL minLength Property
</title>
</head>
<body>
<center>
<h1 style="color:green;">
GeeksForGeeks
</h1>
<h2>
DOM Input URL minLength Property
</h2>
<label for="uname" style="color:green">
<b>Enter URL</b>
</label>
<input type="url" id="gfg" placeholder="Enter URL"
size="20" pattern="https?://.+"
title="Include http://" minlength="20">
<br><br>
<button type="button" onclick="geeks()">
Click
</button>
<p id="GFG" style="color:green;
font-size:25px;">
</p>
<script>
function geeks() {
var link = document.getElementById(
"gfg").minLength;
document.getElementById(
"GFG").innerHTML = link;
}
</script>
</center>
</body>
</html>
输出:
范例2:本示例说明了如何设置Input URL minLength属性。
<!DOCTYPE html>
<html>
<head>
<title>
DOM Input URL minLength Property
</title>
</head>
<body>
<center>
<h1 style="color:green;">
GeeksForGeeks
</h1>
<h2>
DOM Input URL minLength Property
</h2>
<label for="uname" style="color:green">
<b>Enter URL</b>
</label>
<input type="url" id="gfg" placeholder="Enter URL"
size="20" pattern="https?://.+"
title="Include http://" minlength="20">
<br><br>
<button type="button" onclick="geeks()">
Click
</button>
<p id="GFG" style="color:green;
font-size:25px;">
</p>
<script>
function geeks() {
var link =
document.getElementById(
"gfg").minLength = "9";
document.getElementById("GFG").innerHTML
= "The value of the minlength "
+ "attribute set to " + link;
}
</script>
</center>
</body>
</html>
输出:
支持的浏览器:下面列出了DOM输入URL minLength属性支持的浏览器:
相关用法
- HTML Input Search minLength用法及代码示例
- HTML Input Text minLength用法及代码示例
- HTML Input Email minLength用法及代码示例
- HTML Input Password minLength用法及代码示例
- HTML <input> minlength属性用法及代码示例
- HTML textarea minlength用法及代码示例
- HTML minlength属性用法及代码示例
- HTML Input URL name用法及代码示例
- HTML Input URL value用法及代码示例
- HTML <Textarea> minlength属性用法及代码示例
- HTML Input Month min用法及代码示例
- HTML Input Number max用法及代码示例
- HTML Input Hidden name用法及代码示例
- HTML Input Number min用法及代码示例
- HTML Input Button name用法及代码示例
注:本文由纯净天空筛选整理自ManasChhabra2大神的英文原创作品 HTML | DOM Input URL minLength Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。