HTML DOM中的Input Search minLength屬性用於設置或返回搜索Input Field的minlength屬性的值。它指定搜索字段中允許的最小字符數。
用法:
- 它返回Input搜索inLength屬性。
searchObject.minLength
- 用於設置輸入搜索的minLength屬性。
searchObject.minLength = number
屬性值:它包含一個值,該值用於指定搜索minlength字段中允許的最小字符數。
返回值:它返回一個數字值,該值表示搜索minlength字段中允許的最小字符數。
範例1:本示例說明如何返回Input搜索minLength屬性。
<!DOCTYPE html>
<html>
<head>
<title>
Input Search minLength Property
</title>
<style>
h1 {
color:green;
}
h2 {
font-family:Impact;
}
body {
text-align:center;
}
</style>
</head>
<body>
<h1>GeeksforGeeks</h1>
<h2>Input Search minLength Property</h2>
<form id="myGeeks">
<input type="Search" id="test" name="myGeeks"
placeholder="Type to search.." minlength="45">
</form>
<br><br>
<button ondblclick="Access()">
click here
</button>
<p id="check" style="font-size:24px;
color:green;">
</p>
<script>
function Access() {
// type="search"
var s = document.getElementById(
"test").minLength;
document.getElementById(
"check").innerHTML = s;
}
</script>
</body>
</html>
輸出:
- 在單擊按鈕之前:
- 單擊按鈕後:
範例2:本示例說明了如何設置“輸入”搜索minLength屬性。
<!DOCTYPE html>
<html>
<head>
<title>
Input Search minLength Property
</title>
<style>
h1 {
color:green;
}
h2 {
font-family:Impact;
}
body {
text-align:center;
}
</style>
</head>
<body>
<h1>GeeksforGeeks</h1>
<h2>Input Search minLength Property</h2>
<form id="myGeeks">
<input type="Search" id="test" name="myGeeks"
placeholder="Type to search.." minlength="45">
</form>
<br><br>
<button ondblclick="Access()">
click here
</button>
<p id="check" style="font-size:24px;
color:green;">
</p>
<script>
function Access() {
// type="search"
var s = document.getElementById(
"test").minLength = "23";
document.getElementById(
"check").innerHTML = s;
}
</script>
</body>
</html>
輸出:
- 在單擊按鈕之前:
- 單擊按鈕後:
支持的瀏覽器:下麵列出了DOM輸入Search minLength屬性支持的瀏覽器:
- 穀歌瀏覽器
- IE瀏覽器
- Firefox
- Opera
- Safari
相關用法
- HTML Input Text minLength用法及代碼示例
- HTML Input Search value用法及代碼示例
- HTML Input Search name用法及代碼示例
- HTML <input> minlength屬性用法及代碼示例
- HTML Input Search pattern用法及代碼示例
- HTML Input Search maxLength用法及代碼示例
- HTML Input Search form用法及代碼示例
- HTML Input Search type用法及代碼示例
- HTML Input Search required用法及代碼示例
- HTML Input Search readOnly用法及代碼示例
- HTML Input Search placeholder用法及代碼示例
- HTML Input Search size用法及代碼示例
- HTML Input Search autofocus用法及代碼示例
- HTML Input Search autocomplete用法及代碼示例
- HTML Input Search disabled用法及代碼示例
注:本文由純淨天空篩選整理自ManasChhabra2大神的英文原創作品 HTML | DOM Input Search minLength Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。