发新话题
打印

dz6.0编辑器设置背景颜色有问题

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';

TOP

发新话题