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