以下代码在IE中会不断吃掉内存,怎么解决?
  var idGetMsg=0;
  function UpdateMessage()
  {
   if(idGetMsg)
   {
    clearTimeout(idGetMsg);
    idGetMsg=0;
   }
   var xh = new ActiveXObject("Microsoft.XMLHTTP");
   xh = null;
   idGetMsg=setTimeout(UpdateMessage,1);
  }

相关文章:

  • 2022-12-23
  • 2021-10-18
  • 2021-12-04
  • 2021-11-10
  • 2022-12-23
  • 2021-07-30
猜你喜欢
  • 2021-08-17
  • 2021-12-13
  • 2022-03-04
  • 2021-07-30
  • 2021-12-30
  • 2022-12-23
相关资源
相似解决方案