摘要:
常用的location.href的几种形式: self.location.href; window.location.href; this.location.href; location.href; parent.location.href; top.location.href; 举例: a.htm 阅读全文
摘要:
创建并转入新分支:git checkout –b XX(其中XX代表分支名称) 将新分支发布在github上: git push origin Branch1 往分支中添加文件:git add master/XX(master中的XX文件)或者git add XX(XX文件) 添加文件注释:git 阅读全文