JavaScript HTML DOM Input Time 对象
-
Input Time 对象
Time对象表示一个HTML <input>元素,其type=“time”。注意: type =“time”的<input>元素不会在Firefox或IE12及更早版本中显示为任何时间字段。您可以使用getElementById()访问type=“time”的<input>元素:
尝试一下var x = document.getElementById("myTime");
提示:您还可以通过搜索表单的elements集合来访问<input type =“time”> 。您可以使用document.createElement()方法创建type=“time”的<input>元素:
尝试一下var x = document.createElement("INPUT"); x.setAttribute("type", "time");
-
Input Time 对象属性
属性 描述 autocomplete 设置或返回时间字段的autocomplete属性的值 autofocus 设置或返回页面加载时时间字段是否应自动获得焦点 defaultValue 设置或返回时间字段的默认值 disabled 设置或返回是否禁用时间字段 form 返回对包含时间字段的表单的引用 list 返回对包含时间字段的datalist的引用 max 设置或返回时间字段的max属性的值 min 设置或返回时间字段的min属性的值 name 设置或返回时间字段的name属性的值 readOnly 设置或返回时间字段是否为只读 required 设置或返回在提交表单之前是否必须填写时间字段 step 设置或返回时间字段的step属性的值 type 返回时间字段的表单元素类型 value 设置或返回时间字段的value属性的值 -
Input Time 对象方法
方法 描述 stepDown() 使用指定的数字减去时间字段的值,不传值,默认为1 stepUp() 将时间字段的值增加指定的数字,不传值,默认为1 -
-