摘要:
git clone 地址 : 克隆仓库 git clone -b 分支名 地址 :克隆仓库分支 git add . :暂存代码到本地 git commit -m '提交信息' : 提交代码到本地 git push :提交到远程仓库 git status :查看代码状态 git branch :查看分 阅读全文
摘要:
const box=document.querySelector('#box') let i=1 function move(){ box.innerHTML=i++ } // 手写防抖函数,debounce(调用的函数,等待时间) function debounce(fun,t){ let tim 阅读全文