object[index] - Javascript Object Error in IE - Object doesn't support this property or method
I have a simple script to retrieve an id from an object list in javascript. Here is the example:
var element_id;
if (cur_index !== 0) {
element_id = _BIG_LIST[cur_index-1];
}
开发者_运维知识库
IE is throwing an error at: _BIG_LIST[cur_index-1]
Error is Object doesn't support this property or method. This works fine in other browsers, and _BIG_LIST is definitely populated. Also cur_index is definitely within the _BIG_LIST object.
Any ideas?
This was fixed. The var element_id was not in scope where i was using it, which caused IE to throw the error.
精彩评论