HTML DOM中的DOM輸入數字占位符屬性用於設置或返回數字字段的占位符屬性的值。占位符屬性指定描述輸入字段的期望值的簡短提示。在用戶輸入值之前,該字段會顯示簡短提示。
用法:
- 它返回輸入數字占位符屬性。
numberObject.placeholder
- 它用於設置輸入數字的占位符屬性。
numberObject.placeholder = text
屬性值:它包含單個值文本,該文本用於定義描述數字字段的期望值的簡短提示。
返回值:它返回一個代表簡短提示的字符串值,該提示描述了數字字段的期望值。
範例1:本示例說明如何返回輸入數字占位符屬性。
<!DOCTYPE html>
<html>
<body style="text-align:center;">
<h1 style="color:green;">
GeeksForGeeks
</h1>
<h2>DOM Input Number placeholder Property</h2>
<input type="number"
id="myNumber" step="5"
placeholder="multiples of 5" > <br><br>
<button onclick="myFunction()">
Click Here!
</button>
<p id="demo" style="font-size:23px;color:green;"></p>
<script>
function myFunction() {
// Accessing input value
var x =
document.getElementById("myNumber").placeholder;
document.getElementById("demo").innerHTML = x;
}
</script>
</body>
</html>
輸出:
在單擊按鈕之前:
單擊按鈕後:
示例2:本示例說明了如何設置輸入號碼占位符屬性。
<!DOCTYPE html>
<html>
<body style="text-align:center;">
<h1 style="color:green;">
GeeksForGeeks
</h1>
<h2>DOM Input Number placeholder Property</h2>
<input type="number"
id="myNumber" step="5"
placeholder="multiples of 5" > <br><br>
<button onclick="myFunction()">
Click Here!
</button>
<p id="demo" style="font-size:23px;color:green;"></p>
<script>
function myFunction() {
// Accessing input value
var x =
document.getElementById("myNumber").placeholder = "10";
document.getElementById("demo").innerHTML =
"The value of the placeholder attribute was changed to " + x;
}
</script>
</body>
</html>
輸出:
在單擊按鈕之前:
單擊按鈕後:
支持的瀏覽器:下麵列出了DOM輸入數字placeholderProperty支持的瀏覽器:
- 穀歌瀏覽器
- Internet Explorer 10.0以上
- Firefox
- Opera
- Safari
相關用法
- HTML Input URL placeholder用法及代碼示例
- HTML Input Text placeholder用法及代碼示例
- HTML Input Search placeholder用法及代碼示例
- HTML Input Password placeholder用法及代碼示例
- HTML Input Email Placeholder用法及代碼示例
- HTML <input> placeholder屬性用法及代碼示例
- HTML Textarea placeholder用法及代碼示例
- HTML Input Number name用法及代碼示例
- HTML Input Number min用法及代碼示例
- HTML Input Number max用法及代碼示例
- HTML Input Number value用法及代碼示例
- HTML Input Number autofocus用法及代碼示例
- HTML Input Number type用法及代碼示例
- HTML Input Number step用法及代碼示例
注:本文由純淨天空篩選整理自ManasChhabra2大神的英文原創作品 HTML | DOM Input Number placeholder Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。