Board logo

标题: dz6.0编辑器设置背景颜色有问题 [打印本页]

作者: fangzhen    时间: 2009-1-11 16:28     标题: dz6.0编辑器设置背景颜色有问题

dz6.0编辑器,在所见即所得模式下,定义内容背景时有问题,原来是
  editbox.style.width = textobj.style.width;
  editbox.style.height = textobj.style.height;
  editdoc.body.style.backgroundColor = TABLEBG;
  editdoc.body.style.textAlign = 'left';
  editdoc.body.id = 'wysiwyg';
而应该是
  editbox.style.width = textobj.style.width;
  editbox.style.height = textobj.style.height;
  editdoc.body.style.background = TABLEBG;  //此行有问题
  editdoc.body.style.textAlign = 'left';
  editdoc.body.id = 'wysiwyg';




欢迎光临 PHP开发笔记 (http://phpvi.com/) Powered by Discuz! 6.1.0