HTML DOM Input Datetime readOnly 属性

春日樱亭

Input Datetime readOnly 属性

设置 datetime 字段为只读:

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

输出结果:


定义和用法

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

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

该属性反映了 HTML readonly 属性。

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


浏览器支持

HTML DOM Input Datetime readOnly 属性HTML DOM Input Datetime readOnly 属性HTML DOM Input Datetime readOnly 属性HTML DOM Input Datetime readOnly 属性HTML DOM Input Datetime readOnly 属性

所有主流浏览器都支持 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


版权声明:本页面内容旨在传播知识,为用户自行发布,若有侵权等问题请及时与本网联系,我们将第一时间处理。E-mail:284563525@qq.com

目录[+]

取消
微信二维码
微信二维码
支付宝二维码