我想看看标题是text / html还是text / xml。如果它是text / html那么就出现了错误,我宁愿在继续之前抓住它。
答案 0 :(得分:54)
使用getResponseHeader()方法。
最小例子:
<script>
function hand () {
console.log(this.getResponseHeader('content-type'));
}
var x = new XMLHttpRequest();
x.onreadystatechange = hand;
x.open('GET', 'index.html', true);
x.send();
</script>