欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

JavaScript基于Ajax實(shí)現(xiàn)不刷新在網(wǎng)頁上動(dòng)態(tài)顯示文件內(nèi)容

 更新時(shí)間:2015年03月25日 09:17:35   作者:feiwen  
這篇文章主要介紹了JavaScript基于Ajax實(shí)現(xiàn)不刷新在網(wǎng)頁上動(dòng)態(tài)顯示文件內(nèi)容,可實(shí)現(xiàn)實(shí)時(shí)顯示服務(wù)器上txt文件內(nèi)容的功能,是Ajax基本應(yīng)用,具有一定參考借鑒價(jià)值,需要的朋友可以參考下

本文實(shí)例講述了JavaScript基于Ajax實(shí)現(xiàn)不刷新在網(wǎng)頁上動(dòng)態(tài)顯示文件內(nèi)容的方法。分享給大家供大家參考。具體如下:

下面的JS代碼是一個(gè)最基礎(chǔ)的JS的ajax實(shí)現(xiàn),可以動(dòng)態(tài)顯示服務(wù)器上的文件ajax_info.txt文件的內(nèi)容

<!DOCTYPE html>
<html>
<head>
<title>sharejs.com</title>
<script>
function loadXMLDoc()
{
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("myDiv").innerHTML=xmlhttp.responseText;
  }
 }
xmlhttp.open("GET","ajax_info.txt",true);
xmlhttp.send();
}
</script>
</head>
<body>
<div id="myDiv"><h2>Let AJAX change this text</h2></div>
<button type="button" onclick="loadXMLDoc()">Change Content</button>
</body>
</html>

希望本文所述對(duì)大家的Ajax程序設(shè)計(jì)有所幫助。

相關(guān)文章

最新評(píng)論