今天给大家分享的是由图老师小编精心为您推荐的AJAX教程(15):通过XMLHTTP进行一次HEAD请求,喜欢的朋友可以分享一下,也算是给小编一份支持,大家都不容易啊!
【 tulaoshi.com - Web开发 】
AJAX教程(15):通过XMLHTTP进行一次HEAD请求:
html
head
script type="text/javascript"
var xmlhttp;
function loadXMLDoc(url)
{
xmlhttp=null;
if (window.XMLHttpRequest)
{// code for Firefox, Mozilla, IE7, etc.
xmlhttp=new XMLHttpRequest();
}
else if (window.ActiveXObject)
{// code for IE6, IE5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
if (xmlhttp!=null)
{
xmlhttp.onreadystatechange=state_Change;
xmlhttp.open("GET",url,true);
xmlhttp.send(null);
}
else
{
alert("Your browser does not support XMLHTTP.");
}
}
function state_Change()
{
if (xmlhttp.readyState==4)
{// 4 = "loaded"
if (xmlhttp.status==200)
{// 200 = "OK"
document.getElementById('p1').innerHTML=xmlhttp.getAllResponseHeaders();
}
else
{
alert("Problem retrieving data:" + xmlhttp.statusText);
}
}
}
/script
/head
body
p id="p1"
The getAllResponseHeaders() function returns the headers of a resource.
The headers contain file information like length,
server-type, content-type, date-modified, etc./p
button onclick="loadXMLDoc('/example/ajax/test_xmlhttp.txt')"Get Headers/button
/body
/html
来源:http://www.tulaoshi.com/n/20160220/1632558.html
看过《AJAX教程(15):通过XMLHTTP进行一次HEAD请求》的人还看了以下文章 更多>>