我需要使用tiny_mce的异国情调字体,我编辑了theme_advanced_fonts属性,我使用content_css属性来链接定义我的字体系列的样式表。
我可以从菜单中选择字体,但文本不会显示,所以我必须编辑源html和样式属性,以便用我想要的字体呈现文本。
向我的客户询问并不是一件好事。
我该怎么办?
答案 0 :(得分:0)
我建议您使用下拉列表选择列表编写自己的插件,并使用新选择的css(字体)更新iframes头部。
设置css的代码可能看起来像谎言
iframe_id = ed.id;
with(document.getElementById(iframe_id).contentWindow){
var h=document.getElementsByTagName("head");
var newStyleSheet=document.createElement("link");
newStyleSheet.rel="stylesheet";
newStyleSheet.href="http:myerver.com/css/my.css";
h[0].appendChild(newStyleSheet);
}