HTML DOM中的Input DatetimeLocal Step屬性用於設置或返回本地datetime字段的step屬性的值。輸入步長屬性可用於在本地日期時間字段中以秒或毫秒為單位指定合法數字間隔。 step屬性不能用於影響天,月,年,小時或分鍾。
用法:
- 它返回Input DatetimeLocal Step屬性。
datetimelocalObject.step
- 它用於設置Input DatetimeLocal Step屬性。
datetimelocalObject.step = number
屬性值:它包含單個屬性值數字,該數字用於指定合法數字間隔(秒或毫秒)。
以下示例程序旨在說明HTML DOM中的DatetimeLocal步驟屬性:
例:本示例將本地日期字段中的合法數字間隔更改為秒。
<!DOCTYPE html>
<html>
<head>
<title>
HTML DOM Input DatetimeLocal step Property
</title>
</head>
<body style="text-align:center;">
<h1 style="color:green;">
GeeksforGeeks
</h1>
<h2 style="font-family:Impact;">
Input DatetimeLocal step Property
</h2>
<input type="datetime-local" id="Test_Datetime">
<p>
To update the step, double click
the "Change Step" button.
</p>
<button ondblclick="My_DatetimeLocal()">
Change Step
</button>
<p id="test"></p>
<script>
function My_DatetimeLocal() {
document.getElementById("Test_Datetime").step
= "5";
document.getElementById("test").innerHTML
= "The step attribute has been "
+ "changed to '5'.";
}
</script>
</body>
</html>
輸出:
在單擊按鈕之前:
單擊按鈕後:
支持的瀏覽器:下麵列出了Input DatetimeLocal step屬性支持的瀏覽器:
- 蘋果Safari
- Internet Explorer 10.0
- Firefox
- 穀歌瀏覽器
- Opera
相關用法
- HTML Input DatetimeLocal name用法及代碼示例
- HTML Input DatetimeLocal max用法及代碼示例
- HTML Input DatetimeLocal value用法及代碼示例
- HTML Input DatetimeLocal min用法及代碼示例
- HTML Input DatetimeLocal type用法及代碼示例
- HTML Input DatetimeLocal required用法及代碼示例
- HTML Input DatetimeLocal defaultValue用法及代碼示例
- HTML Input DatetimeLocal disabled用法及代碼示例
- HTML Input DatetimeLocal form用法及代碼示例
- HTML Input DatetimeLocal autofocus用法及代碼示例
- HTML Input DatetimeLocal readOnly用法及代碼示例
- HTML Input DatetimeLocal autocomplete用法及代碼示例
- HTML Input Date step用法及代碼示例
- HTML Input Number step用法及代碼示例
- HTML Input Month step用法及代碼示例
注:本文由純淨天空篩選整理自Shubrodeep Banerjee大神的英文原創作品 HTML | DOM Input DatetimeLocal step Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。