HTML DOM中的DOM輸入搜索大小屬性用於設置或返回輸入搜索字段的大小屬性的值。 size屬性用於定義搜索字段的寬度。默認值為20。
用法:
- 它返回輸入搜索大小屬性。
searchObject.size
- 它用於設置“輸入搜索大小”屬性。
searchObject.size = number
屬性值:它包含一個單一的數字,用於根據字符數指定搜索字段的寬度。
返回值:它返回一個數字值,該值表示以字符數表示的搜索字段的寬度。
示例1:本示例說明了如何返回“輸入搜索大小”屬性。
<!DOCTYPE html>
<html>
<head>
<title>
Input Search size Property
</title>
<style>
h1 {
color:green;
}
h2 {
font-family:Impact;
}
body {
text-align:center;
}
</style>
</head>
<body>
<h1>GeeksforGeeks</h1>
<h2>Input Search size Property</h2>
<form id="myGeeks">
<input type="Search"
id="test"
placeholder="Type to search.."
value="GeeksForGeeks"
size="20">
</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").size;
document.getElementById(
"check").innerHTML = s;
}
</script>
</body>
</html>
輸出:
在單擊按鈕之前:
單擊按鈕後:
示例2:本示例說明如何設置“輸入搜索大小”屬性。
<!DOCTYPE html>
<html>
<head>
<title>
Input Search size Property
</title>
<style>
h1 {
color:green;
}
h2 {
font-family:Impact;
}
body {
text-align:center;
}
</style>
</head>
<body>
<h1>GeeksforGeeks</h1>
<h2>Input Search size Property</h2>
<form id="myGeeks">
<input type="Search"
id="test"
placeholder="Type to search.."
value="GeeksForGeeks"
size="20">
</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").size = "40";
document.getElementById(
"check").innerHTML =
"The value of the size attribute was changed to "
+ s;
}
</script>
</body>
</html>
輸出:
在點擊Buttton之前:
單擊按鈕後:
支持的瀏覽器:DOM輸入搜索大小屬性支持的瀏覽器如下:
- 穀歌瀏覽器
- Internet Explorer 10.0以上
- Firefox
- Opera
- Safari
相關用法
- HTML Input URL size用法及代碼示例
- HTML Input Search name用法及代碼示例
- HTML Input Search value用法及代碼示例
- HTML Input Password size用法及代碼示例
- HTML Input Text size用法及代碼示例
- HTML Input Email size用法及代碼示例
- HTML Input Search defaultValue用法及代碼示例
- HTML Input Search autofocus用法及代碼示例
- HTML Input Search autocomplete用法及代碼示例
- HTML Input Search disabled用法及代碼示例
- HTML Input Search type用法及代碼示例
- HTML Input Search form用法及代碼示例
- HTML Input Search required用法及代碼示例
- HTML Input Search maxLength用法及代碼示例
- HTML Input Search placeholder用法及代碼示例
注:本文由純淨天空篩選整理自ManasChhabra2大神的英文原創作品 HTML | DOM Input Search size Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。