如何发送多个头部请求?

时间:2011-10-13 17:58:13

标签: javascript ajax head

当我尝试以下

http1 = new XMLHttpRequest();
http1.open('HEAD', 'http://address1.com', false);
http1.send();

http = new XMLHttpRequest();
http.open('HEAD', 'http://address1.com', false);
http.send();

它只发送第一个请求。

有什么问题?

提前致谢

0 个答案:

没有答案
相关问题