这篇文章主要为大家详细介绍了AJAX实例:用AJAX进行一次 HEAD 请求,具有一定的参考价值,可以用来参考一下。
感兴趣的小伙伴,下面一起跟随四海网的小编罗X来看看吧。
/**
* AJAX实例:用AJAX进行一次 HEAD 请求
* 检索资源(文件)的头信息。
*
* @param
* @arrange (512.笔记) www.q1010.com
**/
<script>
function loadXMLDoc(url)
{
var xmlhttp;
if (window.XMLHttpRequest)
{// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
}
else
{// code for IE6, IE5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function()
{
if (xmlhttp.readyState==4 && xmlhttp.status==200)
{
document.getElementById('p1').innerHTML=xmlhttp.getAllResponseHeaders();
}
}
xmlhttp.open("GET",url,true);
xmlhttp.send();
}
</script>
<p id="p1">The getAllResponseHeaders() function returns the header information of a resource, like length, server-type, content-type, last-modified, etc.</p>
<button onclick="loadXMLDoc('/try/ajax/ajax_info.txt')">Get header information</button>
// 来自:四海网(www.q1010.com)
本文来自:http://www.q1010.com/178/1688-0.html
注:关于AJAX实例:用AJAX进行一次 HEAD 请求的内容就先介绍到这里,更多相关文章的可以留意四海网的其他信息。
关键词:AJAX实例
四海网收集整理一些常用的php代码,JS代码,数据库mysql等技术文章。