安科网
源代码:
点击运行
<!DOCTYPE html> <html> <body> <h3>以下实例演示了如何访问 Month 字段</h3> <input type="month" id="myMonth" value="2014-05"> <p>点击按钮获取 month 字段的月与年。</p> <button onclick="myFunction()">点我</button> <p id="demo"></p> <script> function myFunction() { var x = document.getElementById("myMonth").value; document.getElementById("demo").innerHTML = x; } </script> </body> </html>
运行结果
Copyright © 2013 - 2019 Ancii.com All Rights Reserved
京ICP备18063983号-5
京公网安备11010802014868号