Skip to content
ythy edited this page Jun 2, 2021 · 144 revisions

Jquery

CSS

  • display: none 不能正确测量高度
  • disable-the-hyperlink
  • height: auto !important; 设置CSS最高优先级
  • E + F 选择器中F不能是组合选择 例: div input
  • Vertical-align
  • CSS Cascading
  • white-space用法
  • text-transform用法
  • Inline Style说明
  • 背景透明: background-color: transparent;
  • height:100% 有效的条件:所有的父容器~body都设置高度
  • 屏蔽鼠标事件冒泡 pointer-events: none;
  • flex:1; 在IE下会向下继承,子元素不需要此属性的需要设置flex: none恢复
  • flex属性详解
  • scrolltop return 0
  • 由于伪元素是CSS生成的,不在DOM中,所以JS不能操作pseudo element
  • IE浏览器里 flex: 1 0 0px 这里的flex-basis: 0px 不能简写成flex: 1 0 0

ECMAScript

  • promise chains 项目应用
  • Array Sort
  • block-scoped
  • Function.name 的错误使用
  • Map Constructor argument: new Map(iterable) IE 不支持
  • setTimeout常见问题
  • 闭包理解
  • this 深入理解
  • 日期初始化格式 new Date('1995-12-17T03:24:00'); IE需要T间隔
  • elem.ontouchstart=callback 无效时,用elem.addEventListener('touchstart', callback)
  • new date('2011-01-01T10:11:30Z') 格式化在chrome浏览器会加时区换算 比实际多8小时
  • For key-related events, which relates to the key that has been pressed.returns the same value as the event's keyCode property
  • ECMAScript-Annotate
  • The await operator is used to wait for a Promise. It can only be used inside an async function. 因此,await的返回值就是promiseresolve的值

TypeScript

React

Flex

Android

Webpack

Others

Clone this wiki locally