摘要:
模板字符串: 模板字符串解决了字符串的拼接问题,采用的是【tab键上的反引号(``)来进行包裹数据,同时数据的变量是需要使用${变量名}来实现的】 eg: <div class="box"> </div> const oBox = document.querySelector(''.box); le 阅读全文
摘要:
promise封装自己的ajax: const getJSON = function(url){ return new promise((resolved,rejected)=>{ const xhrs = new XMLHttpRequest(); xhrs.open('GET',url); xh 阅读全文
摘要:
变量的声明: var 是可以提升变量 的: 例如: console.log(a) var a = 10 => var a; console.log(a) ; a=10; 结果是undefined; let : 1.是没有变量提升的 2,.是块级的作用域 3.不能进行重复的声明 4,不会污染全局的变量 阅读全文