javascript运行时错误

时间:2010-10-14 07:13:29

标签: javascript

我使用ckeditor代替文本框id txtEditorAnswer,但在运行时我在这些行中发现了以下错误

x.tabIndex=x.config.tabIndex||x.element.getAttribute('tabindex')||0;

o.modes={wysiwyg:!!n.element.$.form};

if(x.elementMode==1&&y.is('textarea'))

var z=y.$.form&&new h(y.$.form);

1 个答案:

答案 0 :(得分:2)

对于第一行,我猜是xx.configx.elementx.element.getAttribute中的一个未定义。

其他线条将遵循类似的模式。即,您尝试访问的成员,不存在或您尝试调用的函数不存在的对象。

当您使用调试器时,您应该能够检查变量以验证这一点。