You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

28 lines
683 B

<html>
<head>
<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","data.php?name=sunzhiyan",true);
xmlhttp.send();
};
//window.setInterval(function(){$.ajax(getting)},60000);
window.setInterval("loadXMLDoc()",3000);
</script>
</head>
<body>
<div id="myDiv"><h3>Let AJAX change this text</h3></div>
</body></html>