使用ajax獲取伺服器檔案最後修改日期程式碼例項

admin發表於2017-02-10
本章節介紹一下如何利用ajax獲取遠端伺服器上檔案最後的修改日期。

程式碼例項如下:

[HTML] 純文字檢視 複製程式碼
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<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){
          var odiv=document.getElementById('antzone');
      odiv.innerHTML="Last modified:"+xmlhttp.getResponseHeader('Last-Modified');
    }
  }
  xmlhttp.open("GET",url,true);
  xmlhttp.send();
}
window.onload=function(){
  var obt=document.getElementById("bt");
  obt.onclick=function(){
    loadXMLDoc("demo/ajax/txt/demo.txt")
  }
}
</script>
</head>
<body>
<div id="antzone"></div>
<input type="button" id="bt" value="檢視效果"/>
</body>
</html>

getResponseHeader()方法可以參閱XMLHttpRequest物件的getResponseHeader()方法一章節。

相關文章