0
<html>
<body>

<script src="something"></script>

<img src="something">


<script>
window.onload = function () {

//code logic here

}
</script>
</body>
</html>


I want to access the http response headers for all the http requests of this page so that I can determine their status.

最初のスクリプト要求の応答ヘッダーなど、その後のその他の要求。

言い換えれば、私は数を数えたいのです。応答ステータスがエラーであった要求の数。

4

1 に答える 1

0

これを試して:

var req = new XMLHttpRequest();
req.open('GET', document.location, false);
req.send(null);
var headers = req.getAllResponseHeaders().toLowerCase();
alert(headers);
于 2013-02-28T12:47:34.753 に答える