码迷,mamicode.com
首页 > 其他好文 > 详细

ajaxs

时间:2014-04-29 10:27:45      阅读:433      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   java   color   os   

mamicode.com,码迷
<?php 
header("Content-Type:text/html; charset=utf-8");
?>
<html>
<script type="text/javascript">
function loadXMLDoc(){
<!--
//创建ajax对象。
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");
  }
var url=‘http://www.w3school.com.cn/ajax/ajax_xmlhttprequest_send.asp‘;

xmlhttp.onreadystatechange=function()
{
if (xmlhttp.readyState==4 && xmlhttp.status==200)
  {
  document.getElementById("myDiv").innerHTML=xmlhttp.responseText;
  }
}
xmlhttp.open("GET","./newfile.php",true);
xmlhttp.send();
}
//-->
</script>


<style>
<!--
div{
border:1 solid red;
width:300px;
height:300px;
}
//-->
</style>
<body>
<div>
这边我不要变。

</div>
<div id=‘myDiv‘>
刷新好吗?
<button type="button" onclick="loadXMLDoc()">请求数据</button>  

</div>

</body>

</html>
mamicode.com,码迷

ajaxs基本用法。

mamicode.com,码迷
url="www.baidu.com?t="+Math.random();
//避免缓存误导。
var xmlhttp.open("GET",url,true);
xmlhttp.send();
 
mamicode.com,码迷

 

 

 

ajaxs,码迷,mamicode.com

ajaxs

标签:style   blog   http   java   color   os   

原文地址:http://www.cnblogs.com/canbefree/p/3698757.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!