<html>
<body>
<form action="form-action.php">
月: <input type="month" id="myMonth" name="bdaymonth" required>
<input type="submit">
</form>
<p>点击 "点我" 按钮查看 month 字段在表单提交前是否为必填字段。</p>
<button onclick="myFunction()">点我</button>
<p id="demo"></p>
<script>
function myFunction() {
var x = document.getElementById("myMonth").required;
document.getElementById("demo").innerHTML = x;
}
</script>
</body>
</html>