我使用下面的代码使用IE 11发送HTTP请求。
httpRequest.onreadystatechange = function() {};
httpRequest.open('GET', myURL);
httpRequest.send();
这会从我的网站向localhost发送请求。
它在Firefox和Chrome中运行良好且速度更快。但是在IE 11中它并不一致,它有时会起作用,有时也不起作用。
我也尝试过代码,
var req = document.createElement("img");
req.src = myURL;
但没有帮助。我需要添加或更改任何内容吗?
请指导我。
先谢谢