如何在HTML中使用月份输入类型?

HTML中使用<input type =“ month”>的月份输入类型。使用此功能,允许用户选择月份和年份。每当您将用户输入提供给月份输入类型时,就会显示日期选择器弹出窗口。

注意-Firefox和Internet Explorer不支持输入类型month。它可以在Google Chrome上运行。

示例

您可以尝试运行以下代码,以了解如何在HTML中使用月份输入类型。它会显示月份和年份。

<!DOCTYPE html>
<html>
   <head>
      <title>HTML input month</title>
   </head>
   <body>
      <form action = "" method = "get">
         Details:<br><br>
         Student Name<br><input type="name" name="sname"><br>
         Month and Year of Birth<br><input type="month" name="bmonth"><br>
         <input type="submit" value="Submit">
      </form>
   </body>
</html>