前端学习21 - Ajax - XMLHttpRequest的基本使用
1 . 使用xhr(XMLHttpRequest的缩写)发起GET请求//1.创建XHR对象var xhr = new XMLHttpRecuest ()//2. 调用 open 函数,指定 请求方式 与 URL地址xhr. open ('GET' ,‘http://www .liulongbin.top:3006/api/getbooks’)//3. 调用send 函数,发起 Ajax 请求xhr.send ()// 4. 监听 onreadystatechange 事件xhr.onr