摘要:
一般来说,大家可能都会习惯用JQuery提供的Ajax方法,但是用原生的js怎么去实现Ajax方法呢? 原生js实现Ajax: let Ajax={ get:function(url,fn){ let xhr=new XMLHttpRequest(); xhr.open('GET',url,true 阅读全文
摘要:
1)JSON对象 1.JSON json数据 外层是单引号内层属性必须用双引号引起来,如果属性值,是字符串也必须双引号 let json='[{"id":"1001","name":"joly"}]' json方法 转js数据 JSON.parse(需要转换的json数据);//js数据类型输出 j 阅读全文