Input Month表單屬性用於返回對包含Month字段的表單的引用。這是一個隻讀屬性。
用法:
monthObject.form
返回值:成功返回一個表單對象,否則,如果Month字段不在表單中,則返回NULL。
以下示例程序旨在說明Month表單屬性:
例:返回包含元素的表單的名稱。
<!DOCTYPE html>
<html>
<head>
<title>
HTML DOM Input Month form Property
</title>
</head>
<body style="text-align:center;">
<h1>GeeksForGeeks</h1>
<h2>DOM Input Month form Property</h2>
<form id="myGeeks" name = "GFG">
<input type="month" id="month_id" name="geeks">
</form>
<br>
<button onclick="myGeeks()">Click Here!</button>
<p id="GFG" style="font-size:20px;"></p>
<!-- Script to return the value of form property-->
<script>
function myGeeks() {
var gfg = document.getElementById("month_id").form.name;
document.getElementById("GFG").innerHTML = gfg;
}
</script>
</body>
</html>
輸出
在單擊按鈕之前:
單擊按鈕後:
支持的瀏覽器:下麵列出了DOM Input Month表單屬性支持的瀏覽器:
- 穀歌瀏覽器
- Internet Explorer 10.0以上
- Firefox
- Opera
- Safari
注意:在Firefox中,輸入類型=“ month”元素不顯示任何日期字段或日曆。
相關用法
- HTML Input Month name用法及代碼示例
- HTML Input Month min用法及代碼示例
- HTML Input Month max用法及代碼示例
- HTML Input Month value用法及代碼示例
- HTML Input Month type用法及代碼示例
- HTML Input Month step用法及代碼示例
- HTML Input Month required用法及代碼示例
- HTML Input Month disabled用法及代碼示例
- HTML Input Month defaultValue用法及代碼示例
- HTML Input Month autofocus用法及代碼示例
- HTML Input Month readOnly用法及代碼示例
- HTML Input Month autocomplete用法及代碼示例
- HTML Input URL form用法及代碼示例
- HTML Input FileUpload form用法及代碼示例
- HTML Input Text form用法及代碼示例
注:本文由純淨天空篩選整理自ManasChhabra2大神的英文原創作品 HTML | DOM Input Month form Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。