复制代码
1
2
3
4<body> <!-- 添加文档主体内容 --> <header> <nav>JavaScript - Ajax - 读取XML文件</nav> </header> <hr> <div id="id-div-form"> <form id="id-form" name="name-form" action="#" method="get" target="_blank" accept-charset="utf-8"> <table> <caption>Ajax - 读取XML文件</caption> <tr> <td class="td-label"><label>源文件</label></td> <td>xml-table.xml</td> </tr> <tr> <td class="td-label"><label>Ajax方式</label></td> <td><input type="button" value="读取" οnclick="on_ajax_load_xml_click();"/></td> </tr> </table> </form> </div> <div id="id-xml-table"></div> <!-- 添加文档主体内容 --> <script type="text/javascript"> var g_xhr; function creatXMLHttpRequest() { var xhr; if (window.ActiveXObject) { xhr = new ActiveXObject("Microsoft.XMLHTTP"); } else if (window.XMLHttpRequest) { xhr = new XMLHttpRequest(); } else { xhr = null; } return xhr; } function on_ajax_load_xml_click() { g_xhr = creatXMLHttpRequest(); if (g_xhr) { g_xhr.onreadystatechange = handleStateChange; g_xhr.open("GET", "xml-table.xml", true); g_xhr.setRequestHeader("CONTENT-TYPE", "application/x-www-form-urlencoded"); g_xhr.send(null); } } function handleStateChange() { if (g_xhr.readyState == 4) { if (g_xhr.status == 200) { console.log("The server response: " + g_xhr.responseText); document.getElementById("id-xml-table").innerHTML = g_xhr.responseText; console.log("The server response: " + g_xhr.responseXML); document.getElementById("id-xml-table").innerHTML += g_xhr.responseXML; } } } </script> </body>
POST请求方式
复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58<body> <!-- 添加文档主体内容 --> <header> <nav>JavaScript - Ajax - POST请求方式</nav> </header> <hr> <div id="id-div-form"> <form id="id-form" name="name-form" action="#" method="post" target="_blank" accept-charset="utf-8"> <table> <caption>Ajax - POST请求方式</caption> <tr> <td class="td-label"><label>用户名</label></td> <td><input type="text" id="id-input-username" value=""/></td> </tr> <tr> <td class="td-label"><label>密码</label></td> <td><input type="password" id="id-input-pwd" value=""/></td> </tr> <tr> <td class="td-label"><label>Ajax方式</label></td> <td> <input type="button" id="id-input-login" value="登陆" οnclick="on_login_click(this.id);"/> </td> </tr> <tr> <td class="td-label"><label>提示</label></td> <td id="id-td-hint"></td> </tr> </table> </form> </div> <!-- 添加文档主体内容 --> <script type="text/javascript"> var g_xhr; function creatXMLHttpRequest() { var xhr; if (window.ActiveXObject) { xhr = new ActiveXObject("Microsoft.XMLHTTP"); } else if (window.XMLHttpRequest) { xhr = new XMLHttpRequest(); } else { xhr = null; } return xhr; } function on_login_click(thisid) { var param; var p_username = document.getElementById("id-input-username").value; var p_pwd = document.getElementById("id-input-pwd").value; param = "username=" + p_username + "&pwd=" + p_pwd; g_xhr = creatXMLHttpRequest(); if (g_xhr) { g_xhr.onreadystatechange = handleStateChange; g_xhr.open("POST", "ch13-ajax-post.php", true); g_xhr.setRequestHeader("CONTENT-TYPE", "application/x-www-form-urlencoded"); g_xhr.send(param); } } function handleStateChange() { if (g_xhr.readyState == 4) { if (g_xhr.status == 200) { console.log("The server response: " + g_xhr.responseText); document.getElementById("id-td-hint").innerHTML = g_xhr.responseText; } } } </script> </body>
转载于:https://www.cnblogs.com/zq-dmhy/p/10502833.html
最后
以上就是勤恳舞蹈最近收集整理的关于JavaScript 13 Ajax技术(未完)的全部内容,更多相关JavaScript内容请搜索靠谱客的其他文章。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复