取得するデータのヘッダーを読み込むには

<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=utf-8">
<title>Sample</title>
<script type="text/javascript"><!--
function getAllHeader() {
xmlhttp = createXMLHttp();
if (xmlhttp) {
xmlhttp.onload = function(){ document.aForm.tArea.value = xmlhttp.getAllResponseHeaders();}
xmlhttp.open("GET", "sample.xml", true);
xmlhttp.send(null);
}
}
// XMLHttpオブジェクト作成
function createXMLHttp() {
try {
return new ActiveXObject ("Microsoft.XMLHTTP");
}catch(e){
try {
return new XMLHttpRequest();
}catch(e) {
return null;
}
}
return null;
}
// --></script>
</head>
<body>
<form name="aForm">
<input type="button" value="すべてのヘッダーを読み込む" onClick="getAllHeader()"><br>
<textarea cols="40" rows="20" id="tArea"></textarea>
</body>
</html>
・サンプルを実行
・サンプルをダウンロード
逆引きクイックリファレンス JavaScript 説明などは本書を参考にしてください。