2021年2月24日

伪元素清除浮动

摘要: .clearfix:after{ display: block; content: ''; clear: both; height: 0; visibility: hidden; } .clearfix { zoom: 1; } 阅读全文

posted @ 2021-02-24 02:38 I666999 阅读(9) 评论(0) 推荐(0) 编辑

手写对象深度拷贝

摘要: function deepClone(obj = {}) { if ( typeof obj !== 'object' || typeof obj == null ) { return obj } let result; if ( obj instanceof Array ) { result = 阅读全文

posted @ 2021-02-24 01:29 I666999 阅读(20) 评论(0) 推荐(0) 编辑

手写对象深度比较,判断对象内容是否相同

摘要: function isObject(obj) { return typeof obj == 'object' && typeof obj !== null; } function isEqual(obj1,obj2) { if ( !isObject(obj1) || !isObject(obj2) 阅读全文

posted @ 2021-02-24 01:21 I666999 阅读(37) 评论(0) 推荐(0) 编辑

导航