AJAX实例代码如下:
/**
* AJAX实例:用AJAX进行一次指定的 HEAD 请求
* 检索资源(文件)的指定头信息。
*
* @param
* @arrange (512.笔记) jb51.cc
**/
<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="Last modified: " + xmlhttp.getResponseHeader('Last-Modified');
}
}
xmlhttp.open("GET",url,true);
xmlhttp.send();
}
</script>
<p id="p1">The getResponseHeader() function is used to return specific header information from a resource,like length,server-type,content-type,last-modified,etc.</p>
<button onclick="loadXMLDoc('/try/ajax/ajax_info.txt')">Get "Last-Modified" information</button>
// 来自:编程之家 jb51.cc(jb51.cc)
原文链接:https://www.f2er.com/ajax/527496.html