HTML DOM中的DOM Input Month defaultValue属性用于设置或返回Month字段的默认值。它是在value属性中指定的值。
用法:
- 它返回defaultValue属性。
monthObject.defaultValue
- 它用于设置defaultValue属性。
monthObject.defaultValue = value
属性值:
- value:它指定“月”字段的默认值。
返回值:它以字符串形式返回Month字段的值。
示例1:本示例返回Input Month属性的defaultValue。
<!DOCTYPE html>
<html>
<head>
<title>
HTML DOM Input Month defaultValue Property
</title>
</head>
<body style="text-align:center;">
<h1>GeeksForGeeks</h1>
<h2>
DOM Input Month defaultValue Property
</h2>
<form id="myGeeks">
<input type="month"
id="month_id"
name="geeks"
value="2019-10">
</form>
<br>
<button onclick="myGeeks()">
Click Here!
</button>
<p id="GFG"
style="font-size:20px;">
</p>
<!-- Script to return
the defaultValue-->
<script>
function myGeeks() {
var gfg =
document.getElementById(
"month_id").defaultValue;
document.getElementById(
"GFG").innerHTML = gfg;
}
</script>
</body>
</html>
输出
在单击按钮之前:
单击按钮后:
示例2:本示例说明了如何设置或更改defaultValue。
<!DOCTYPE html>
<html>
<head>
<title>
HTML DOM Input Month defaultValue Property
</title>
</head>
<body style="text-align:center;">
<h1>GeeksForGeeks</h1>
<h2>
DOM Input Month defaultValue Property
</h2>
<form id="myGeeks">
<input type="month"
id="month_id"
name="geeks"
value="2019-10">
</form>
<br>
<button onclick="myGeeks()">
Click Here!
</button>
<p id="GFG"
style="font-size:20px;">
</p>
<!-- Script to set the
defaultValue of Month field-->
<script>
function myGeeks() {
var gfg =
document.getElementById(
"month_id");
gfg.defaultValue = "2019-01";
var g = gfg.defaultValue;
document.getElementById(
"GFG").innerHTML = g;
}
</script>
</body>
</html>
输出:
在单击按钮之前:
单击按钮后:
支持的浏览器:下面列出了DOM输入Month defaultValue属性支持的浏览器:
- 谷歌浏览器
- Internet Explorer 10.0以上
- Firefox
- Opera
- Safari
注意:在Firefox中,输入类型=“ month”元素不显示任何日期字段或日历。
相关用法
- HTML Input URL defaultValue用法及代码示例
- HTML Input reset defaultValue用法及代码示例
- HTML Input Datetime defaultValue用法及代码示例
- HTML Input Search defaultValue用法及代码示例
- HTML Input Number defaultValue用法及代码示例
- HTML Input Color defaultValue用法及代码示例
- HTML Input Date defaultValue用法及代码示例
- HTML Input Hidden defaultValue用法及代码示例
- HTML Input Time defaultValue用法及代码示例
- HTML Input Text defaultValue用法及代码示例
- HTML Input DatetimeLocal defaultValue用法及代码示例
- HTML Input Password defaultValue用法及代码示例
- HTML Input Submit defaultvalue用法及代码示例
- HTML Input Radio defaultvalue用法及代码示例
- HTML Input Email defaultValue用法及代码示例
注:本文由纯净天空筛选整理自ManasChhabra2大神的英文原创作品 HTML | DOM Input Month defaultValue Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。