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