HTML DOM中的DOM輸入數字stepUp()方法用於將數字字段的值增加給定值。
用法:
numberObject.stepUp(number)
參數:它接受一個必需的參數:
- number:它指定要增加數字字段的數字。默認情況下,它增加1。
返回值:它不返回任何值。
例:本示例顯示stepUp()方法的用法方式:
<!DOCTYPE html>
<html>
<head>
<title>
HTML DOM Input Number stepUp() Method
</title>
</head>
<body style="text-align:center;">
<h1>
GeeksForGeeks
</h1>
<h2>
DOM Input Number stepUp() Method
</h2>
<form id="myGeeks">
<input type="number"
id="number_id"
name="geeks"
value="11">
</form>
<br>
<button onclick="myGeeks()">
Click Here!
</button>
<!-- Script to increment the number -->
<script>
function myGeeks() {
document.getElementById(
"number_id").stepUp(3);
}
</script>
</body>
</html>
輸出:
在單擊按鈕之前:
單擊按鈕後:
支持的瀏覽器:下麵列出了DOM輸入Number stepUp()方法支持的瀏覽器:
- 穀歌瀏覽器
- Internet Explorer 10.0以上
- Opera
- Safari
相關用法
- HTML Input Range stepUp()用法及代碼示例
- HTML Input Week stepUp()用法及代碼示例
- HTML Input Date stepUp()用法及代碼示例
- HTML Input DatetimeLocal stepUp()用法及代碼示例
- HTML Input Time stepUp()用法及代碼示例
- HTML Input Month stepUp()用法及代碼示例
- HTML Input Number stepDown()用法及代碼示例
- HTML Input Number value用法及代碼示例
- HTML DOM Input Number用法及代碼示例
- HTML Input Number max用法及代碼示例
- HTML input number用法及代碼示例
- HTML Input Number name用法及代碼示例
- HTML Input Number min用法及代碼示例
- HTML Input Number form用法及代碼示例
- HTML Input Number autocomplete用法及代碼示例
注:本文由純淨天空篩選整理自ManasChhabra2大神的英文原創作品 HTML | DOM Input Number stepUp() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。