摘要: 事件流 <style> .big{ width: 300px; height: 300px; background-color: red; } .center{ width: 200px; height: 200px; background-color: yellow; } .small{ widt 阅读全文
posted @ 2021-07-28 23:02 `Duet` 阅读(62) 评论(0) 推荐(0) 编辑
摘要: promise和async函数 promise let p = new Promise((resolve)=>{ resolve("hello world") }) p.then((data) => { console.log(data) // hello world }) async函数 // a 阅读全文
posted @ 2021-07-28 15:54 `Duet` 阅读(85) 评论(0) 推荐(0) 编辑