try
{  
  xmlhttp.Send();
}
catch(e){}
finally  
{
  var result = xmlhttp.responseText;
  if(result)  
  {
   if(xmlhttp.Status==200)
   {
    return(true);
   }
   else  
   {
    return(false);
   }
  }
  else  
  {
   return(false);
  }
}

相关文章:

  • 2021-10-20
  • 2021-10-23
  • 2022-02-11
  • 2021-09-08
  • 2021-10-14
  • 2021-06-10
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-02-23
  • 2022-02-12
  • 2022-12-23
  • 2022-02-07
相关资源
相似解决方案