实际上,Ajax的初步写法很固定,需要修改的也只有:
- 连接服务器(准备发送数据)
- xhr.open('get|post',url,true|false);
- 获取数据方法格式:xhr.responseText
- xhr.responseXML
- 以及过程监控后的if语句成立后的内容
- xhr.onreadystatechange=function(){
- if(this.readyState==4 && this.status==200){
- xhr.onreadystatechange=function(){
如下面这菜鸟教程里的事例,事实上w3c里面也是这个.
使用 AJAX 修改该文本内容