全部好,
我正在使用jquery-1.4.1.js文件但是当我在I.E.8中打开应用程序时,它会抛出错误“堆栈溢出发生在第2734行堆栈空间之外”但它似乎在FireFox上运行顺利。
代码行如下 - :
if ( left.substr( left.length - 1 ) !== "\\" ) {
match[1] = (match[1] || "").replace(/\\/g, "");
set = Expr.find[ type ]( match, context, isXML );
if ( set != null ) {
expr = expr.replace( Expr.match[ type ], "" );
break;
}
此代码中的“set = Expr.find[ type ]( match, context, isXML );
”是一行。 2734。
可能是什么原因。请帮助。
答案 0 :(得分:0)
原因是你的堆栈内存不足。内存已分配但未释放 - 很可能是因为无限循环。
我们能看到2734号线附近的代码吗?