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