HTML5 contenteditable attribute question [duplicate]
Possible Duplicate:
HTML5 contenteditable question.
what is the contenteditable attributes default value?
My browsers show this:
- Opera 10.63:
inherit
- Google Chrome 9.0.570.1 dev:
false
- Internet Explorer 8 (isContentEdible):
false
- Firefox 4.0 b6:
inherit
This attribute can be set to: true
, false
and inherit
.
Running the Javascript code produces inherit
on my Firefox/3.6.12.
alert(document.body.contentEditable);
精彩评论