使用Microsoft Ajax Control Toolkit的Combobox
控件,我得到了一些客户端异常。
调试器指向我这段特定的代码:
text = this._optionListItems[this._highlightedIndex].text;
,错误信息为:
No se puede obtener la propiedad'text'de referencia nula o sin definir
大致翻译为
由于null或未定义的引用
,无法获取属性'text'
另外,表达式的手表给了我
this._optionListItems[this._highlightedIndex]
评估为undefined。
我很喜欢这个,因为我真的需要Combobox的功能。 但我真的需要一种方法来阻止IE调试器激活并停止执行页面。
有没有办法捕获错误/异常并将其解雇?