主题: 请教更改样式问题
作者: 巫山看云, 发布日期: 2010-11-04 19:08:54, 浏览数: 5829

我想改变编辑器的外观,看不出边框,只保留内容。添加了cssPath

 KE.show({
    id : 'content',
    width : "100%", //编辑器的宽度为70%   
    height : "300px", //编辑器的高度为100px
    cssPath : '${ctx}/jsp/business/bulletin/mykindeditor.css',   
    filterMode : false, //不会过滤HTML代码   
    resizeMode : 0, //编辑器只能调整高度
    afterCreate : function(id) {
          KE.toolbar.disable(id, []);
          KE.readonly(id);
          KE.g[id].newTextarea.disabled = true;
        },
    items:
    []
  });

 

我用firebug查看了,已经能解析出我的css地址了。可编辑器还是调用的default.css  为什么啊?

 

kindeditor.js中的源码:

 

 getFullHtml : function(id) {
  var html = '<html>';
  html += '<head>';
  html += '<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />';
  html += '<title>KindEditor</title>';
  html += '<link href="' + KE.g[id].skinsPath + 'common/editor.css?ver=' + escape(KE.version) + '" rel="stylesheet" type="text/css" />';
  var cssPath = KE.g[id].cssPath;
  if (typeof cssPath == 'string') cssPath = [cssPath];
  for (var i = 0, len = cssPath.length; i < len; i++) {
   if (cssPath[i] !== '') html += '<link href="' + cssPath[i] + '" rel="stylesheet" type="text/css" />';
  }
  html += '</head>';
  html += '<body class="ke-content"></body>';
  html += '</html>';
  return html;
 },

 

小弟初学,还望各位赐教!

作者: Roddy, 发布日期: 2010-11-04 20:31:13
cssPath是编辑区域的样式,编辑器外部样式直接用style标签引入就可以。
回复
作者: 巫山看云, 发布日期: 2010-11-05 17:58:12

谢谢楼上,给个实例吧,比方我要改<table cellspacing="0" cellpadding="0" border="0" class="ke-bottom" style="height: 11px;">  想把底边的高度设为0

回复
发表新帖 发表回复