simpleAjax - Web 开发 / Ajax
希望点击按钮后,弹出有XML文件中文本信息的对话框:
<html> <head> <title>simpleAjax</title> <script type="text/javascript"> var xmlHttpRequest; function createXMLHttpRequest() { if (typeof XMLHttpRequest=="undefined") { xmlHttpRequest=new ActiveXObject(navigator.userAgent.indexOf("MSIE 5")>=0?"Microsoft.XMLHTTP":"Msxml2.XMLHTTP"); } else { xmlHttpRequest= new XMLHttpRequest(); } } function sendRequest() { createXMLHttpRequest(); xmlHttpRequest.onreadystatechange=stateChange; xmlHttpRequest.open("GET","test.xml"); xmlHttpRequest.send(null); } function stateChange() { if(xmlHttpRequest.readyState==4) { if(xmlHttpRequest==200) { window.alert(xmlHttpRequest.responseText); } } } </script> </head> <body> <form action="#"> <input type="button" value="send" onclick="sendRequest();"/> </form> </body></html>
<html> <head> <title>simpleAjax</title> <script type="text/javascript"> var xmlHttpRequest; function createXMLHttpRequest() { if (typeof XMLHttpRequest == "undefined") { xmlHttpRequest = new ActiveXObject(navigator.userAgent.indexOf("MSIE 5") >= 0 ? "Microsoft.XMLHTTP" : "Msxml2.XMLHTTP"); } else { xmlHttpRequest = new XMLHttpRequest(); } } function sendRequest() { createXMLHttpRequest(); //alert("df"); xmlHttpRequest.onreadystatechange = stateChange; xmlHttpRequest.open("GET", "test.xml"); xmlHttpRequest.send(null); } function stateChange() { if (xmlHttpRequest.readyState == 4) { if (xmlHttpRequest.status == 200) { alert("done"); alert(this.responseXML); } } } </script> </head> <body> <form action="#"> <input type="button" value="send" onclick="sendRequest();"/> </form> </body></html>
[解决办法]
不可能啊,在我的电脑上能执行的啊,而且xmlHttpRequest.status == 200而不是xmlHttpRequest == 200
[解决办法]
你这些代码是放在jsp中的么?
------解决方案--------------------
用浏览器来查看
用编辑器的插件有可能未完全实现浏览器的功能。
而且如果请求的是xml文件,要通过服务器来访问,要不在ie下生成不了xml的dom树结构
其他问题参考
ajax问题总结