为了账号安全,请及时绑定邮箱和手机立即绑定

【金秋打卡】第16天 前端面试技能拼图2

标签:
面试

课程名称:2周刷完100道前端优质面试真题
课程章节:第4章 前端面试技能拼图2 :前端基础知识 , 必知必会
主讲老师:双越

课程内容:

今天学习的内容包括:
4-11 -【连环问】for-await-of有什么作用——用于遍历多个Promise。
4-12 -offsetHeight-scrollHeight-clientHeight有什么区别——offsetHeight是border + padding + content,clientHeight是padding + content,scrollHeight是padding + 实际内容尺寸。

课程收获:

答案
  • for await…of 用于遍历多个 Promise
  • async和await常配合使用
 return new Promise((resolve) => {
     setTimeout(() => {
         resolve(val)
     }, 1000)
 })
const list = [p1, p2, p3]
// Promise.all(list).then(res => console.log(res))
for await (let res of list) {
	console.log(res)
}
盒子模型
  • width
  • height
  • padding
  • border
  • margin
  • box-sizing
计算规则
  • offsetHeight offsetWidth : border + padding + content
  • clientHeight clientWidth : padding + content
  • scrollHeight scrollWidth : padding +实际内容尺寸
const container = document.getElementById('container')
console.log('offsetHeight', container.offsetHeight)
console.log('offsetWidth', container.offsetWidth)
console.log('clientWidth', container.clientWidth)
console.log('clientHeight', container.clientHeight)
console.log('scrollWidth', container.scrollWidth)
console.log('scrollHeight', container.scrollHeight)
  • scrollTop scrollLeft 需滚动之后获取

今天的 学习了 【连环问】for-await-of有什么作用和offsetHeight-scrollHeight-clientHeight有什么区别。for-await-of等同于Promise.All(),offsetHeight-scrollHeight-clientHeight的区别为计算包含不同。怪异盒子模式比较常用。

下一步就是 学习 HTMLCollection和NodeList有什么区别。今天学习就先到这里吧。

坚持打卡,坚持学习,未来可期,加油😀~

​​​​​​​
​​​https://img1.sycdn.imooc.com/6369fa7f00014db323141581.jpg

https://img4.sycdn.imooc.com/636a000c000163cd23221585.jpg

点击查看更多内容
TA 点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
  • 推荐
  • 评论
  • 收藏
  • 共同学习,写下你的评论
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消