ckeditor inline 可以将div中的placeholder展示出来吗?

1<div contenteditable="true" placeholder="一些提示语" id="test"></div>
在使用 ckeditor.inline(test)后自动插入<p><br/></p> 使得placeholder的内容不显示了 这个有办法解决吗?

PIPIONE
浏览 538回答 1
1回答

www说

需要添加一个Configuration Helper插件(放在/plugins目录下)CKEDITOR.editorConfig = function( config ) {&nbsp; &nbsp; // Define changes to default configuration here. For example:&nbsp; &nbsp; // config.language = 'fr';&nbsp; &nbsp; // config.uiColor = '#AADC6E';&nbsp; &nbsp; config.extraPlugins='confighelper';&nbsp;&nbsp; &nbsp; config.placeholder = 'Type here...';};
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript