# 2020.11.16 今天是每日时报陪伴您的第 451 天
[文章] 纯 CSS 实现吸附效果:https://mp.weixin.qq.com/s? (opens new window)
position
当值为sticky
时将元素变成粘性定位。「粘性定位」是相对定位和固定定位的合体,元素在特定阈值跨越前为相对定位,跨越后为固定定位。
[文章] 避免在空链接使用 "javascript:void(0)" :https://www.30secondsofcode.org/blog/s/javascript-void-links (opens new window)
通常,您希望避免
href="javascript:void(0)"
,因为这将导致浏览器解析链接 URL 的值,这既昂贵又不必要。它还引入了一个潜在的 XSS 安全漏洞,因为javascript:
url 违反了内容安全策略;href=""
或者href=""
在大多数情况下应该是首选的
[文章] ES2020 系列:可选链 "?." 为啥出现,我们能用它来干啥:https://juejin.im/post/6895518401196720136 (opens new window)
let user = {}; // user 没有 address 属性
alert(user?.address?.street); // undefined(不报错)