11 2024 档案
摘要:<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document<
阅读全文
摘要:通常认为子元素的百分比完全相对于直接父元素,但是,不总是相对于父元素的对应属性值。 子元素的 top 和 bottom 如果设置百分比,则相对于直接非 static 定位(默认定位)的父元素高度。 子元素的left 和 right 如果设置百分比,则相对于直接非 static 定位父元素的宽度。 子
阅读全文
摘要:console.log(Object.is(+0,-0)) //false 但是控制台为true console.log(Object.is(NaN,NaN)) // true 但是控制台是false const uniqueArray = (arr)=>{ const result = [] ou
阅读全文
摘要:const r = ['1','2','3'].map(parseInt); console.log(r) // 1.没有传 undefined 0 1.0x开头,16进制 2.0开头 老版本8进制 新版本10进制 3.10进制 // 2.无效进制 2-36 小于2 大于36 返回NaN // 3.
阅读全文
摘要:// 示例节点结构 const nodes = [ { id: 1, parentId: null, name: 'Root' }, { id: 4, parentId: 2, name: 'Grandchild 1' }, { id: 5, parentId: 2, name: 'Grandchi
阅读全文
摘要:let hidden,visibilitychange; if(typeof document.hidden !== "undefined"){ hidden = "hidden"; visibilitychange = "visibilitychange" }else if(typeof docu
阅读全文