取代$ajax的方式 2019-06-30 原生 123456fetch(url) .then((response) => response.json()) .then((data) => console.log(data)) .catch((e) => console.log("Oops, error", e)); 兼容的话就是用 xmlhttprequest 实现 promise 方法,GitHub 有这个,自己也可以简化。 前一篇 动态绑定的原理 后一篇 取代选择器$()的方式