輸入日期類型屬性用於返回日期字段為表單元素的類型。
輸入日期類型屬性返回一個字符串,該字符串表示日期字段是表單元素的類型。
用法:
inputdateObject.type
以下示例程序旨在說明Date類型的屬性:
返回日期字段是表單元素的類型。
<!DOCTYPE html>
<html>
<head>
<title>Input Date type Property in HTML</title>
<style>
h1 {
color:green;
}
h2 {
font-family:Impact;
}
body {
text-align:center;
}
</style>
</head>
<body>
<h1>GeeksforGeeks</h1>
<h2>Input Date type Property</h2>
<br> Date Of Birth:
<input type="date" id="Test_Date">
<p>To find out the type of form element the date field is,
double-click the "Check Type" button.</p>
<button ondblclick="My_Date()">Check Type</button>
<p id="test"></p>
<script>
function My_Date() {
").type;
document.getElementById("test").innerHTML = t;
}
</script>
</body>
</html>
輸出:
單擊按鈕後
支持的Web瀏覽器:
- 蘋果Safari
- IE瀏覽器
- Firefox
- 穀歌瀏覽器
- Opera
相關用法
- HTML input date用法及代碼示例
- HTML Input Date max用法及代碼示例
- HTML Input Date value用法及代碼示例
- HTML Input Date name用法及代碼示例
- HTML Input Date min用法及代碼示例
- HTML Input Date disabled用法及代碼示例
- HTML Input Date autofocus用法及代碼示例
- HTML Input Date form用法及代碼示例
- HTML Input Date defaultValue用法及代碼示例
- HTML Input Date autocomplete用法及代碼示例
- HTML Input Date required用法及代碼示例
- HTML Input Date step用法及代碼示例
- HTML Input Date readOnly用法及代碼示例
- HTML Input URL type用法及代碼示例
注:本文由純淨天空篩選整理自Shubrodeep Banerjee大神的英文原創作品 HTML | DOM Input Date type Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。