HTMLElement: isContentEditable-Eigenschaft
Die schreibgeschützte Eigenschaft HTMLElement.isContentEditable
gibt einen booleschen Wert zurück, der true
ist, wenn der Inhalt des Elements bearbeitbar ist; andernfalls wird false
zurückgegeben.
Wert
Ein boolescher Wert.
Beispiele
HTML
html
<p id="firstParagraph">Uneditable Paragraph</p>
<p id="secondParagraph" contenteditable="true">Editable Paragraph</p>
<p id="infoText1">Is the first paragraph editable?</p>
<p id="infoText2">Is the second paragraph editable?</p>
JavaScript
js
const firstParagraph = document.getElementById("firstParagraph");
const secondParagraph = document.getElementById("secondParagraph");
const infoText1 = document.getElementById("infoText1");
const infoText2 = document.getElementById("infoText2");
infoText1.textContent += " " + firstParagraph.isContentEditable;
infoText2.textContent += " " + secondParagraph.isContentEditable;
Ergebnis
Spezifikationen
Specification |
---|
HTML Standard # dom-iscontenteditable-dev |
Browser-Kompatibilität
BCD tables only load in the browser
Siehe auch
HTMLElement/contentEditable
- Das globale Attribut
contenteditable
.