文本框内容可编辑时如何更改文本颜色?

时间:2018-05-23 05:06:00

标签: jquery html css bootstrap-4 contenteditable

如果内容可编辑为true / false,如何更改样式? 当editable为true时需要红色,而当false为false时需要灰色。 这在CSS中是否可行?

这是我的HTML代码:

<body spellcheck="false" autocorrect="off" contenteditable="false" style="color:gray;>
  Need to change color of the text when it is false
</body>

1 个答案:

答案 0 :(得分:3)

attribute使用css slector 这是关于css选择器的教程 :https://www.w3schools.com/cssref/css_selectors.asp

body[contenteditable="true"]{
    color:red;
}
body[contenteditable="false"]{
    color:grey;
}