如何将默认占位符文本提供给ckeditor中的textarea?

时间:2015-09-01 13:35:36

标签: javascript html5 css3 ckeditor text-editor

为此深思熟虑。我一直在尝试使用其中一个插件"配置助手"在ckeditor中添加占位符文本。 CkEditor的插件。

如何在ckeditor中将默认占位符文本提供给textarea?

Placeholder text

2 个答案:

答案 0 :(得分:2)

按照以下步骤添加占位符。

1)将confighelper插件添加到您的插件文件夹中。

2)将这段代码添加到您的配置中:

config.extraPlugins='onchange,confighelper';

3)在你的html页面中,为你的textarea添加占位符属性,强制添加

 CKEDITOR.replace( '#editor', {             
    extraPlugins : 'confighelper',                                                  
 });

4)现在你可以享受了。

答案 1 :(得分:-1)

在HTML5中,是一个占位符属性

<textarea placeholder="Describe yourself here..."></textarea>

否则你需要javscript才能做到这一点 要查看哪些浏览器兼容,请查看:http://www.w3schools.com/tags/att_textarea_placeholder.asp