fmpq.com
源代码:
点击运行
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Fmpq教程(fmpq.com)</title> </head> <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>
运行结果