标签:res 链接 style 服务 监听 创建对象 type 示例 pre
function sendInfo(type,code=0){ // 创建对象 var xhr = new XMLHttpRequest(); // 监听ajax状态 xhr.onreadystatechange = function(){ // 判断,当监听的ajax状态是4的时候(数值对应上面的五种状态) if(xhr.readyState==4){ // 处理数据,以字符串的形式接收数据库里面的信息 resoponseText chuliData(xhr.responseText,type); } } // 创建一个请求,链接数据库 xhr.open("get",‘./ld.php?type=‘+type+‘&code=‘+code); // 发送请求 xhr.send(null); }
标签:res 链接 style 服务 监听 创建对象 type 示例 pre
原文地址:https://www.cnblogs.com/cp123/p/9023538.html