水平垂直居中positiondisplay 和 定位 和 浮动的优先级数据类型object和其它数据类型的区别类型判断讲一讲原型和原型链null 和 undefined讲一下new的过程讲一下this function f1(){ setTimeout( ()=>{ console.log('===f1',this.id) }, 100) } function f2(){ setTimeout( function log(){ console.log('===f2:',this.id) }, 100) } var id = 1; f1.call({id: 23}) f2.call({id...