看看以下程序的问题。
var timeoutID=0;
function delayMsgBodyLoad()
{
if(timeoutID!=0)
clearTimeOut(timeoutID); //执行到这里出错。
timeoutID=setTimeout("delayMsgCallOut()",10000);
}
function delayMsgCallOut()
{
var today=new Date();
timeoutID=0;
bottomFrame1.location.href="delay_msg.msp?date="+today.getTime();
}