我在我的表格的texareas中使用ckeditor,但网站的背景是黑色所以我 想要更改默认样式。 我有基本的工具栏:
CKEDITOR.replace( 'editor1',
{
toolbar : [ [ 'Bold', 'Italic', '-', 'NumberedList', 'BulletedList', '-',
'Link', 'Unlink','-']]
});
我想要更改的范围样式是(默认值):
<span style="color: rgb(0, 0, 0); font-family: Arial, Helvetica, sans; font-size: 11px;
line-height: 14px; text-align: justify; ">
我可以在哪里更改默认值
答案 0 :(得分:1)
您要做的是使用自定义样式:
CKEDITOR.addStyleSet( 'myStyles', [
{
name: 'Custom span',
element: 'span',
styles:
{
'color': 'rgb(0,0,0)',
'font-family': 'Arial, Helvetica, sans',
'font-size': '11px',
'line-height': '14px',
'text-align': 'justify'
}
}
]);
CKEDITOR.replace( 'editor1', { styleSet: 'myStyles:/styles.js' } )
请参阅:http://docs.cksource.com/CKEditor_3.x/Developers_Guide/Styles
答案 1 :(得分:0)
<textarea cols="100" id="editor1" name="editor1" rows="10">This is some sample text</textarea>
<script type="text/javascript">
// Replace the <textarea id="editor1"> with an CKEditor instance.
var editor = CKEDITOR.replace( 'editor1' );
editor.on( 'instanceReady', function( ev ){
//set the background properties
this.document.$.childNodes[1].childNodes[1].style.backgroundColor = 'Blue';
editor.focus();
});
</script>