今天使用ExtJS2.1发生未指明错误
IE8 javascript错误跟踪至
if(G.getBoundingClientRect){
M=G.getBoundingClientRect();
N=C(document).getScroll();
return[M.left+N.left,M.top+N.top]
}
就在此处发生错误 ,
解决方法 直接加个try{}catch
if(G.getBoundingClientRect){
try{M=G.getBoundingClientRect();
N=C(document).getScroll();
return[M.left+N.left,M.top+N.top]
}catch(ex)
{
return [0,0];
}
}