标签:set sele query 失败 需要 erro php class 指定
<!-- 引入自己封装的 Ajax文件 测试下怎么用 --> <script src="myAjax.js"></script> <script> window.addEventListener(‘load‘, function() { var btn = document.querySelector(‘button‘); var res = encodeURIComponent(‘张三‘); // 把中文转为指定的字符串 console.log(res); btn.onclick = function() { Ajax(‘04.Ajax.get.php‘, { name: ‘啦啦啦‘, // 需要把这个对象转换为后端服务器所需要的格式:URL?key=value&key=value age: ‘17岁‘ }, 3000, function(xhr) { // 3000代表如果远程服务器3秒内还没有响应 就终止请求 alert(xhr.responseText) // 拿到这个地址的后端数据 }, function(xhr) { alert(‘error请求失败‘) }) } }) </script>
标签:set sele query 失败 需要 erro php class 指定
原文地址:https://www.cnblogs.com/yanglaxue/p/14266917.html