摘要:
window.top 当B嵌套在A页面中时,直接是不能调用A页面的方法和属性的 如果想使用A页面中的方法和属性 可以使用window.top (返回窗口层级最顶层窗口的引用) if(window.top != window.self) { window.top.location.href = win 阅读全文
摘要:
outline: Chrome浏览器默认为-webkit-focus-ring-color auto 1px; webkit-focus-ring-color默认为rgb(16, 16, 16);这个值不会变,但是浏览器可能对其他的属性进行了处理,导致了focus元素时会根据背景色的不同产生不同的对 阅读全文
摘要:
https://github.com/krisk/Fuse Options Follow #Basic Options #isCaseSensitive Type: boolean Default: false Indicates whether comparisons should be case 阅读全文
摘要:
查找文件 Ctrl + P 查找指令 Ctrl + Shift + P 折叠代码 (CTRL + K) + (CTRL + 0) 打开代码 (CTRL + K) + (CTRL + J) 获取同一列的光标 CTRL + SHIFT + 方向键 阅读全文
摘要:
问题: 1. 请帮我用javascript写一个方法,把data数据转换为result结构的数据 const data = [ { value: 10, level: 1 }, { value: 20, level: 2 }, { value: 30, level: 3 }, { value: 40 阅读全文
摘要:
JetBrains: https://www.jetbrains.com/zh-cn/lp/mono/ FiraCode: https://github.com/tonsky/FiraCode 阅读全文
摘要:
高亮文件第100行 链接地址后面加上#L100 高亮评论 链接地址后面加上#note_xxxxx 评论找ticket 输入! 阅读全文
摘要:
const array = [1, 2, 3]; Object.freeze(array); let array2 = array; array2 = array2.sort((a, b) => b - a); 某些库内部冻结了对象或者数组,导致直接去修改内部数据时会出现问题 解决方法: 通过 le 阅读全文
摘要:
设置颜色时各种报错 查找原因,发现是series的问题,series中data一定要用data: [...variable]的格式,才能调整颜色 数据写死后 const options = { "chart": { "marginRight": 18, "height": 424, "events" 阅读全文
摘要:
中文文档: https://www.tailwindcss.cn/docs 阅读全文