Input Month form 属性
Input Month 对象的 form 属性返回包含 month 字段的表单引用
成功时该属性返回 form 对象
该属性为只读属性
浏览器支持
所有主流浏览器都支持 form 属性
Internet Explorer 或 Firefox 浏览器不支持使用 type="month" 属性的 <input> 元素
语法
monthObject.form
返回值
包含 month 字段表单元素的引用。如果 month 字段没有在表单中,返回 null
范例
返回 <input type="month"> 元素所属的表单 id
var x = document.getElementById("myMonth").form.id;