function getXMLHTTPRequest() {
var xRequest=null;
if (window.XMLHttpRequest) {
xRequest=new XMLHttpRequest();
}else if (typeof ActiveXObject != "undefined"){
xRequest=new ActiveXObject
("Microsoft.XMLHTTP");
}
return xRequest;
}

相关文章:

  • 2021-06-24
  • 2021-05-29
  • 2021-12-12
  • 2021-10-23
  • 2021-12-12
  • 2021-11-28
  • 2021-11-23
  • 2021-08-11
猜你喜欢
  • 2021-07-10
  • 2021-09-28
  • 2021-07-14
  • 2022-12-23
  • 2022-12-23
  • 2021-11-18
  • 2022-01-02
相关资源
相似解决方案