HTML DOM中的DOM輸入搜索表單屬性用於返回包含輸入搜索字段的表單的引用。它是隻讀屬性,成功時將返回一個表單對象。
用法:
searchObject.form
例:以下示例程序旨在說明輸入搜索表單屬性。
<!DOCTYPE html>
<html>
<head>
<title>
Input Search form Property
</title>
<style>
h1 {
color:green;
}
h2 {
font-family:Impact;
}
body {
text-align:center;
}
</style>
</head>
<body>
<h1>GeeksforGeeks</h1>
<h2>Input Search form Property</h2>
<form id="myGeeks">
<input type="Search"
id="test"
name="myGeeks"
placeholder="Type to search..">
</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").form.id;
document.getElementById(
"check").innerHTML = s;
}
</script>
</body>
</html>
輸出:
在單擊按鈕之前:
單擊按鈕後:
支持的瀏覽器:DOM輸入搜索表單“屬性”支持的瀏覽器如下:
- 穀歌瀏覽器
- IE瀏覽器
- Firefox
- Opera
- Safari
相關用法
- HTML Input URL form用法及代碼示例
- HTML Input Date form用法及代碼示例
- HTML Input Password form用法及代碼示例
- HTML Input Image form用法及代碼示例
- HTML Input Datetime form用法及代碼示例
- HTML Input Submit form用法及代碼示例
- HTML Input Color form用法及代碼示例
- HTML Input Reset form用法及代碼示例
- HTML Input Week form用法及代碼示例
- HTML Input Number form用法及代碼示例
- HTML Input Month form用法及代碼示例
- HTML Input Button form用法及代碼示例
- HTML Input Time form用法及代碼示例
- HTML Input Radio form用法及代碼示例
- HTML Input Text form用法及代碼示例
注:本文由純淨天空篩選整理自ManasChhabra2大神的英文原創作品 HTML | DOM Input Search form Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。