首页 > 代码库 > 通过实例来理解ajax
通过实例来理解ajax
点击一个按钮,然后将信息显示到指定的div内。
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> 2 <html> 3 <head> 4 <title>FirstTest.html</title> 5 <script language="javascript"> 6 function onclickAjax(){ 7 var xmlHttp; 8 //分浏览器创建XMLHttp对象 9 if(window.XMLHttpRequest){10 xmlHttp=new XMLHttpRequest();11 }else if(window.ActiveXObject){12 xmlHttp=new ActiveXObject("Microsoft.XMLHTTP")13 }14 //设置请求类型15 xmlHttp.open("POST","test.do?method=ajaxTest&&msg="+new Date(),true);16 //回调函数17 xmlHttp.onreadystatechange=function(){18 if(xmlHttp.readyState==4){19 if(xmlHttp.status==200){20 document.getElementById("testid").value=xmlHttp.responseText;21 }else{22 alert("AJAX服务器返回错误!");23 } 24 }25 }26 //发送请求27 xmlHttp.send();28 }29 </script>30 </head>31 32 <body>33 <input type="button" value="测试" onclick="onclickAjax()">34 <div id="testid">35 </div>36 </body>37 </html>
通过实例来理解ajax
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。