全局属性 contenteditable 是一个枚举属性(enumerated attribute),表示元素是否可被用户编辑。 如果可以,浏览器会修改元素的部件(widget)以允许编辑。该属性必须是下面的值之一:
true或空字符串,表示元素是可编辑的;false表示元素不是可编辑的。
如果没有设置该属性,其默认值继承自父元素。
该属性是一个枚举属性(enumerated one),而非布尔属性(Boolean one)。这意味着必须显式设置其值为 true、false 或空字符串中的一个,并且不允许简写为 <label contenteditable>Example Label</label> (注:这在大部分浏览器中是有效的)正确的用法是 <label contenteditable="true">Example Label</label>。
规范
| 规范版本 | 规范状态 | 注解 |
|---|---|---|
| WHATWG HTML Living Standard contenteditable |
Living Standard | No change from latest snapshot, HTML5.1 |
| HTML5.1 contenteditable |
Working Draft | Snapshot of WHATWG HTML Living Standard, no change from HTML5 |
| HTML5 contenteditable |
Recommendation | Snapshot of WHATWG HTML Living Standard, initial definition. |
浏览器兼容性
| Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
|---|---|---|---|---|---|
| Basic support | (Yes) | 3.0 (1.9) | (Yes) | (Yes) | (Yes) |
| Feature | Android | Chrome for Android | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
|---|---|---|---|---|---|---|
| Basic support | (Yes) | 1.0 (1.9) | (Yes) | (Yes) | (Yes) | (Yes) |