如何在激活CKEditor或单击编辑时在HTML5 textarea中显示占位符属性
<textarea id="historyDescription" class="ckeditor" name="historyDescription" placeholder="historyDescription" contenteditable="true" spellcheck="true"> </textarea>
点击编辑占位符文字时应显示
答案 0 :(得分:2)
您可以使用Configuration Helper插件来获取该行为。只需将插件添加到您的构建中,它就会自动运行。
答案 1 :(得分:0)
var config = {};
config.placeholder = 'Place holder';
CKEDITOR.replace("editor1" , config );