摘要: git clone 地址 : 克隆仓库 git clone -b 分支名 地址 :克隆仓库分支 git add . :暂存代码到本地 git commit -m '提交信息' : 提交代码到本地 git push :提交到远程仓库 git status :查看代码状态 git branch :查看分 阅读全文
posted @ 2023-03-23 22:22 小闫的姑娘 阅读(2) 评论(0) 推荐(0) 编辑
摘要: const box=document.querySelector('#box') let i=1 function move(){ box.innerHTML=i++ } // 手写防抖函数,debounce(调用的函数,等待时间) function debounce(fun,t){ let tim 阅读全文
posted @ 2023-03-23 16:54 小闫的姑娘 阅读(13) 评论(0) 推荐(0) 编辑