MCPcopy
hub / github.com/mynane/PDF / XHR

Function XHR

实用工具/xhr/xhr实现1.js:1–18  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

1function XHR() {
2 var xhr;
3 try{
4 xhr = new XMLHttpRequest();
5 }
6 catch(e) {
7 var IEXHRVers = ["Msxml3.XMLHTTP","Msxml2.XMLHTTP","Microsoft.XMLHTTP"];
8 for (var i=0, len=IEXHRVers.length; i<len; i++) {
9 try{
10 xhr = new ActiveXObject(IEXHRVers[i]);
11 }
12 catch(e) {
13 continue;
14 }
15 }
16 }
17 return xhr;
18}
19
20
21

Callers 1

xhr实现1.jsFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected