HTML DOM中的Input Month name屬性用於設置或返回輸入Month字段的name屬性的值。每個輸入月字段都需要name屬性。如果未在輸入字段中指定name屬性,則將根本不發送該字段的數據。
用法:
- 它返回輸入月名稱屬性。
monthObject.name
- 它用於設置“輸入月份”名稱屬性。
monthObject.name = name
屬性值:它包含單個屬性值,即用於指定“月”字段名稱的名稱。
返回值:它返回一個字符串值,代表輸入的Month字段的名稱。
示例1:本示例返回輸入月名稱屬性。
<!DOCTYPE html>
<html>
<head>
<title>
HTML DOM Input Month name Property
</title>
</head>
<body style="text-align:center;">
<h1>GeeksForGeeks</h1>
<h2>DOM Input Month name Property</h2>
<form id="myGeeks">
<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 name Property-->
<script>
function myGeeks() {
var gfg = document.getElementById("month_id").name ;
document.getElementById("GFG").innerHTML = gfg;
}
</script>
</body>
</html>
輸出
在單擊按鈕之前:
單擊按鈕後:
示例2:本示例說明了如何設置name屬性。
<!DOCTYPE html>
<html>
<head>
<title>
HTML DOM Input Month name Property
</title>
</head>
<body style="text-align:center;">
<h1>GeeksForGeeks</h1>
<h2>DOM Input Month name Property</h2>
<form id="myGeeks">
<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 set the name Property-->
<script>
function myGeeks() {
var gfg = document.getElementById("month_id");
gfg.name = "geeks2";
document.getElementById("GFG").innerHTML =
"The name of field is changed to " + gfg.name;
}
</script>
</body>
</html>
輸出:
在單擊按鈕之前:
單擊按鈕後:
支持的瀏覽器:DOM輸入月份名稱屬性支持的瀏覽器如下:
- 穀歌瀏覽器
- Internet Explorer 10.0以上
- Firefox
- Opera
- Safari
注意:在Firefox中,輸入類型=“ month”元素不顯示任何日期字段或日曆。
相關用法
- HTML Input Month max用法及代碼示例
- HTML Input Month value用法及代碼示例
- HTML Input Month min用法及代碼示例
- HTML Input Month step用法及代碼示例
- HTML Input Month type用法及代碼示例
- HTML Input Month autocomplete用法及代碼示例
- HTML Input Month disabled用法及代碼示例
- HTML Input Month readOnly用法及代碼示例
- HTML Input Month autofocus用法及代碼示例
- HTML Input Month defaultValue用法及代碼示例
- HTML Input Month required用法及代碼示例
- HTML Input Month form用法及代碼示例
- HTML DOM Input Month用法及代碼示例
- HTML input month用法及代碼示例
- HTML Input Month stepDown()用法及代碼示例
注:本文由純淨天空篩選整理自ManasChhabra2大神的英文原創作品 HTML | DOM Input Month name Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。