undefined

说明脚本中一些对象没有设定
你应在在使用该对象前进行判断
例如:
if(typeof(aobject) == "undefined"){
  //错误处理
}

05-07 13:11