小知识

  1. 忽略git上传文件 /node_modules
  2. 初始化git项目
    没有文件的时候
echo "# weixin" >> README.md
git init
git add README.md
git commit -m "first commit"
git remote add origin https://github.com/liuestc/weixin.git
git push -u origin master

已经存在文件的时候

git remote add origin https://github.com/liuestc/weixin.git
git push -u origin master

第一次提交为什么要用 -u?

    • 清除 input 样式 伪元素清除默认input
    • 另一种方法是将 input的的透明度设为0 在写父元素样式 demo
  1. 时间秒数转化为年月日 new Date(t).getFullYear()+new Date(t).getMonth()>9?(new Date(t).getMonth())+1:''0''+(new Date(t).getMonth())+1

你可能感兴趣的:(小知识)