Input Datetime readOnly 属性

Input Datetime 对象参考手册 Input Datetime 对象

实例

设置 datetime 字段为只读:

document.getElementById("myDatetime").readOnly = true;

输出结果:


运行代码 »

定义和用法

readOnly 属性用于设置或者返回 datetime 字段是否为只读。

只读字段不能修改。但是可以复制该字段的内容。

该属性反映了 HTML readonly 属性。

提示: 为了确保表单数据的准确性,可以使用 disabled 属性替代。


浏览器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

所有主流浏览器都支持 readOnly 属性。

注意: Internet Explorer, Firefox, Opera 15 (及更高版本) 或 Chrome 支持 <input> 元素使用 type="datetime"。


语法

返回 readOnly 属性:

datetimeObject.readOnly

设置 readOnly 属性:

datetimeObject.readOnly=true|false

属性值

描述
true|false 描述了 datetime 字段是否只读
  • true - datetime 字段为只读
  • false - 默认。datetime 字段不是只读

技术细节

返回值: 布尔值,如果 datetime 字段为只读返回true,否则返回 false。

更多实例

实例

查看 datetime 字段是否为只读:

var x = document.getElementById("myDatetime").readOnly;
x输出结果为:
true

运行代码 »

相关文章

HTML 参考手册: HTML <input> readonly 属性


Input Datetime 对象参考手册 Input Datetime 对象其他扩展