千锋教育-做有情怀、有良心、有品质的职业教育机构
// 创建xhr var xhr = new XMLHTTPRequest()
// 侦听通信状态改变的事件 xhr.addEventListener("readystatechange", readyStateChangeHandler);
// Method 分为 get post put delete等等
// Async 异步同步
// name和password是用户名和密码 xhr.open(Method, URL, Async, name, password)
// 发送内容给服务器 xhr.send(内容) function readyStateChangeHandler(e) { // 当状态是4时,并且响应头成功200时, if (xhr.readyState === 4 && xhr.status === 200) { // 打印返回的消息 console.log(xhr.response) } }
相关推荐