function WebForm_CallbackComplete()
{
for (i = 0; i < __pendingCallbacks.length; i++)
{。。。}
}
It seems that the error is in the for (i=0; and is the core of the problem. The i variable is a global variable and it can get changed within the loop.
{
for (i = 0; i < __pendingCallbacks.length; i++)
{。。。}
}
It seems that the error is in the for (i=0; and is the core of the problem. The i variable is a global variable and it can get changed within the loop.