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