HTML DOM中的Input Month required属性用于设置或返回在提交表单时是否应填写Input Month字段。此属性用于反映HTML必需属性。
用法:
- 它返回Input Month required属性。
monthObject.required
- 它用于设置“输入月份”必填属性。
monthObject.required = true|false
属性值:
- true:它指定在提交表单之前必须填写“月”字段。
- false:它是默认值。它指定在提交表单之前不得填写“月”字段。
返回值:它返回一个布尔值,该值表示在提交表单之前必须填写月字段。
示例1:本示例返回Input Month required属性。
<!DOCTYPE html>
<html>
<head>
<title>
HTML DOM Input Month required Property
</title>
</head>
<body style="text-align:center;">
<h1>GeeksForGeeks</h1>
<h2>DOM Input Month required Property</h2>
<form id="myGeeks">
<input type="month" id="month_id" name="geeks" required>
</form>
<br>
<button onclick="myGeeks()">Click Here!</button>
<p id="GFG" style="font-size:20px;"></p>
<!-- Script to return the required Property-->
<script>
function myGeeks() {
var gfg = document.getElementById("month_id").required;
document.getElementById("GFG").innerHTML = gfg;
}
</script>
</body>
</html>
输出
在单击按钮之前:
单击按钮后:
示例2:本示例说明了如何设置属性。
<!DOCTYPE html>
<html>
<head>
<title>
HTML DOM Input Month required Property
</title>
</head>
<body style="text-align:center;">
<h1>GeeksForGeeks</h1>
<h2>DOM Input Month required Property</h2>
<form id="myGeeks">
<input type="month" id="month_id" name="geeks" required>
</form>
<br>
<button onclick="myGeeks()">Click Here!</button>
<p id="GFG" style="font-size:20px;"></p>
<!-- Script to set the required Property-->
<script>
function myGeeks() {
var gfg = document.getElementById("month_id");
gfg.required = false;
var g = gfg.required;
document.getElementById("GFG").innerHTML =
"The value is changed from true to " + g;
}
</script>
</body>
</html>
输出:
在单击按钮之前:
单击按钮后:
支持的浏览器:下面列出了DOM输入支持的浏览器所需的月属性。
- 谷歌浏览器
- Internet Explorer 10.0以上
- Firefox
- Opera
- Safari
注意:在Firefox中,输入类型=“ month”元素不显示任何日期字段或日历。
相关用法
- HTML Input Month max用法及代码示例
- HTML Input Month value用法及代码示例
- HTML Input Month name用法及代码示例
- HTML Input Month min用法及代码示例
- HTML Input Month readOnly用法及代码示例
- HTML Input Month disabled用法及代码示例
- HTML Input Month type用法及代码示例
- HTML Input Month form用法及代码示例
- HTML Input Month autofocus用法及代码示例
- HTML Input Month defaultValue用法及代码示例
- HTML Input Month autocomplete用法及代码示例
- HTML Input Month step用法及代码示例
- HTML Input URL required用法及代码示例
- HTML Input Time required用法及代码示例
- HTML Input Text required用法及代码示例
注:本文由纯净天空筛选整理自ManasChhabra2大神的英文原创作品 HTML | DOM Input Month required Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。