jq的ajax学习
ajax --前后台分离开发 api(程序应用集---数据接口) 局部刷新技术 异步请求(请求和后续代码同时执行) 同步请求(等待请求执行完成在执行后续代码) 专门做后台数据的访问的 先学习原生js的ajax 对象 XMLhttprequest 对象 后台数据访问的对象 原生js在访问后台数据的时候专门写 1.实例化对象 2.open 连接远程服务器 参数: method 请求的方式 get post url:请求的服务器路径 async 当前的请求是同步还是异步 true 异步 false 同步 user 用户名 password 密码 send() 发送请求 4.响应事件onreadystatechange 5.渲染界面 var http = new XMLHttpRequest(); //2.建立服务器连接 http.open("get", "./data/student.txt"); //3.发送请求 http.send(); //4.服务器响应 http.onreadystatechange = function () { //5.界面的渲染 //判断 获取最终读取完成状态 if (http.readyState == 4) { //返回的数据都是string //console.log(typeof http.responseText); console.log