Ajax实例

Posted Arther_J

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Ajax实例相关的知识,希望对你有一定的参考价值。

 1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
 2 "http://www.w3.org/TR/html4/strict.dtd">
 3 
 4 <html xmlns="http://www.w3.org/1999/xhtml" lang="en">
 5     <head>
 6         <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
 7         <title>Ajax实例</title>
 8         <script type="text/javascript" src="script/jquery-1.12.2.js"></script>
 9         <meta name="author" content="Administrator" />
10         <!-- Date: 2016-04-04 -->
11     </head>
12     <body>
13         <input type="button" value="Ajax提交" onclick="Ajax();" />
14         <div id="resText"></div>
15         <script type="text/javascript">
16             function Ajax() {
17               var xmlHttpReg = null;
18               if(window.ActiveXObject){
19                   xmlHttpReg = new ActiveXObject("Microsoft.XMLHTTP");
20               }else if(window.XMLHttpRequest){
21                   xmlHttpReg = new XMLHttpRequest();
22               }
23               xmlHttpReg.open("GET","test.php",true);
24               xmlHttpReg.onreadystatechange = RequsetCallBack;
25               xmlHttpReg.send(null);
26               function RequestCallBack() {
27                 if(xmlHttpReg.readyStatus==4){
28                     if(xmlHttpReq.status==200){
29                         document.getElementById("resTest").innerHTML = xmlHttpReq.responseText;
30                     }
31                 }
32               }
33             }
34         </script>
35     </body>
36 </html>

 

以上是关于Ajax实例的主要内容,如果未能解决你的问题,请参考以下文章

创建片段而不从 java 代码实例化它

Javascript代码片段在drupal中不起作用

片段事务中的实例化错误

web前端开发JQuery常用实例代码片段(50个)

前端面试题之手写promise

如何为 XSLT 代码片段配置 CruiseControl 的 C# 版本?