本文介绍了如何更改TinyMCE的背景?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我刚刚为我的网站安装了TinyMCE编辑器.但是默认背景是黑色,文本颜色是灰色.任何人都可以告诉我如何将背景更改为白色,并将文本颜色更改为黑色.
I have just install TinyMCE editor for my website. But the default background is black and text colour is gray. Anybody can tell me how to change background to white and text colour to black.
推荐答案
或者您可以使用js更改颜色:
Or you can change the color using js:
tinyMCE.init(
mode : "textareas",
theme : "simple",
oninit : "postInitWork"
});
function postInitWork()
{
var editor = tinyMCE.getInstanceById('myEditorid');
editor.getBody().style.backgroundColor = "#FFFF66";
}
这篇关于如何更改TinyMCE的背景?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!