<script type="text/javascript"> var xmlhttp; function m(){ alert("草"); var cars=document.getElementById("cars"); var car1=cars.getElementsByTagName("li"); car1[1].innerHTML="nima"; if(window.XMLHttpRequest) { xmlhttp=new XMLHttpRequest(); } else { xmlhttp=new ActiveXObject("Microsoft.XMLHTTP"); } xmlhttp.onreadystatechange=myfunc; xmlhttp.open("GET","a.txt",true); xmlhttp.send(); } function myfunc(){ if(xmlhttp.readyState==4&&xmlhttp.status==200) { alert("完成请求:"+xmlhttp.responseText); } if(xmlhttp.readyState==1) { alert("建立连接"); } if(xmlhttp.readyState==2) { alert("接收请求"); } if(xmlhttp.readyState==3) { alert("处理请求中"); } } </script> </head>
ajax的基础知识自己查阅w3c school
a.txt 文档中就写一个字母a ,需要将文档编码改为 utf-8,怎么改看上一篇文章
最近在使用MiniUI做一个课程设计,确实减少了很多界面开发的工作量,目前遇到一个问题就是,MiniUI布局的时候使用异步的方式从服务器加载一个txt文件,里面是一些JSON字符串 ,描述的是菜单组成,例子如下:
1 |
[ |
2 |
{ id: "studentInfo",text: "信息维护"}, |
3 | { id: "editInfo",pid: "studentInfo",text: "修改资料",iconCls: "icon-edit",url: "http://www.baidu.com" }, |
4
{ id: "editPass",text: "修改密码",url: "http://www.renren.com" },monospace!important; font-size:1em!important; min-height:inherit!important; display:block!important">5
6
{ id: "outgoing",text: "去向管理"},monospace!important; font-size:1em!important; min-height:inherit!important; display:block!important">7
{ id: "lately",pid: "outgoing",text: "最新通知",iconCls: "icon-add",url: "http://www.qq.com"},monospace!important; font-size:1em!important; min-height:inherit!important; display:block!important">8
{ id: "edit",text: "修改去向",url: "http://www.oschina.net" }
9 | ] |
由于含有中文,所以ajax 请求 过来的内容显示乱码。自己想到一个简单的 解决 此 问题 的方法,就是将原来的txt 文件 用UTF-8的形式编码,Notepad++的格式菜单就能够快速地转换 的编码格式,转换后再将乱码部分替换成中文,果然这样就 了这个 。 原文链接:https://www.f2er.com/ajax/164935.html