3

我已经将此异常的根源追溯到 CKEditor v3.0.1 的sourcearea插件。它发生在用户将内容输入编辑器之后(偶尔),然后他单击编辑器右上角的小箭头(关闭工具栏箭头)。有没有人看到这个问题?我们使用的是 IE6。

onResize(){
   textarea.hide();  // EXCEPTION occurs because textarea is null
   textarea.setStyle( 'height', holderElement.$.clientheight + 'px');
   textarea.show();
};

问题开始后(n = textarea = null),每次单击右箭头时都会出现问题。

4

1 回答 1

1

正如 Pekka 建议的那样,我现在检查 null 并收工。

于 2009-12-10T19:09:38.650 回答