VIP福利
主页 > 建站问题 > 织梦技巧 > 织梦dede后台编辑器添加中文字体的方法

织梦dede后台编辑器添加中文字体的方法

打开include/ckeditor/ckeditor.js,搜索i.font_names,找到字体列表。添加所需的中文字体,添加后为: 1 i.font_names= Arial/Arial, Helvetica, sans-serif;Comic Sans MS/Comic Sans MS, cursive;Courier New/Courier New, Courier, monospace;Georgia/Georgia, serif;Lucida Sans Unicode/Lucida Sans […]



打开include/ckeditor/ckeditor.js,搜索i.font_names,找到字体列表。添加所需的中文字体,添加后为:  

1 i.font_names='Arial/Arial, Helvetica, sans-serif;Comic Sans MS/Comic Sans MS,  cursive;Courier New/Courier New, Courier, monospace;Georgia/Georgia,  serif;Lucida Sans Unicode/Lucida Sans Unicode, Lucida Grande, sans-serif;Tahoma/Tahoma,  Geneva, sans-serif;Times New Roman/Times New Roman, Times, serif;Trebuchet MS/Trebuchet MS,  Helvetica, sans-serif;Verdana/Verdana, Geneva, sans-serif; 宋体/宋体;黑体/黑体;仿宋/仿宋_GB2312;楷体/楷体_GB2312;隶书/隶书;幼圆/幼圆;微软雅黑/微软雅黑';

需要特别注意的是:添加的字体,要写成诸如“宋体/宋体”的形式,而不是“宋体”。即“显示的字体名称/实际字体名称”的格式。 有的同学在添加完后发现后台还是原来的样子,没有增加字体啊?奇怪怎么回事呢? 这里要注意了,你更新了js后后台调用的js他还有缓冲没有更新,这时候你要把  

查看源码
 
打印代码帮助
01 <!-- 添加下面的代码 -->
02   <textarea name="body" rows="8" cols="60"></textarea>
03 <script type="text/javascript">//<![CDATA[
04 window.CKEDITOR_BASEPATH='/include/ckeditor/';
05 //]]></script>
06  
07 <script type="text/javascript" src="/include/ckeditor/ckeditor.js?t=B8DJ5M3"></script>
08 <script type="text/javascript">//<![CDATA[
09 CKEDITOR.replace('body', {"extraPlugins":"dedepage,multipic,addon","toolbar":[["Source","-","Templates"],["Cut","Copy","Paste","PasteText","PasteFromWord","-","Print"],["Undo","Redo","-","Find","Replace","-","SelectAll","RemoveFormat"],["ShowBlocks"],["Image","Flash","Addon"],["Maximize"],"/",["Bold","Italic","Underline","Strike","-"],["NumberedList","BulletedList","-","Outdent","Indent","Blockquote"],["JustifyLeft","JustifyCenter","JustifyRight","JustifyBlock"],["Table","HorizontalRule","Smiley","SpecialChar"],["Link","Unlink","Anchor"],"/",["Styles","Format","Font","FontSize"],["TextColor","BGColor","MyPage","MultiPic"]],"height":450,"skin":"kama"});
10 //]]></script>


说点什么吧
  • 全部评论(0
    还没有评论,快来抢沙发吧!