1.考察的知識(shí):BOM,與瀏覽器相關(guān)的一些對(duì)象方法宅荤,通常是window下的
瀏覽器沒有被任意一個(gè)家標(biāo)準(zhǔn)組織所規(guī)范,但有一些通用方法成一個(gè)事實(shí)上的標(biāo)準(zhǔn)
history
location
navigator
screen
js中有三種彈框:
alert():只彈出消息,只有一個(gè)確定按鈕
confirm(),彈出消息,帶有一個(gè)確定和取消按鈕
prompt()彈出消息并帶輸入框,帶有一個(gè)確定和取消按鈕
2.JS正則表達(dá)式
https://www.cnblogs.com/rubylouvre/archive/2010/03/09/1681222.html
https://developer.mozilla.org/zh-CN/docs/Web/JavaScript/Reference/Global_Objects/RegExp
3.input框相關(guān)屬性
https://developer.mozilla.org/ru/docs/Web/HTML/Element/Input
JS命名規(guī)范
1.只能由字母,數(shù)字,下劃線和$組成
2.第一個(gè)字符不能是數(shù)字
3.不能使用關(guān)鍵字當(dāng)命名
input框常用type類型
jquery與原生 復(fù)制dom
jquery: clone(布爾值)
js的生:cloneNode(布爾值)
jquery查找元素
1.選擇器找::first,:last,nth-child(),nth-of-type()
2.查找方法找:eq().find(),.childre(),parent().....
js定時(shí)器
setTimeout(要執(zhí)行的函數(shù)灿椅,毫秒)
clearfTimeout(time)
setInterval(要執(zhí)行的函數(shù)套蒂,毫秒)
clearInterval(time)
null和undefined的區(qū)別
http://www.ruanyifeng.com/blog/2014/03/undefined-vs-null.html
JS注釋
單行注釋: //
多行注釋:/* */
JS Math方法
### 取整
Math.floor()
Math.ceil()
Math.round()
### 隨機(jī)數(shù)
Math.random()
封裝隨機(jī)數(shù)方法:
function random(start,end) {
var num=end-start+1;
return Math.floor(Math.random()*num+start)
}
1. rem 相對(duì)于html根字號(hào)
2. em 相對(duì)于父級(jí)元素字號(hào)
3. 百分比 相對(duì)于父級(jí)元素寬度
4. px 絕對(duì)單位
null和undefined的區(qū)別
http://www.ruanyifeng.com/blog/2014/03/undefined-vs-null.html
JS注釋
單行注釋: //
多行注釋:/* */
JS Math方法
### 取整
Math.floor()
Math.ceil()
Math.round()
### 隨機(jī)數(shù)
Math.random()
封裝隨機(jī)數(shù)方法:
function random(start,end) {
var num=end-start+1;
return Math.floor(Math.random()*num+start)
}
1. rem 相對(duì)于html根字號(hào)
2. em 相對(duì)于父級(jí)元素字號(hào)
3. 百分比 相對(duì)于父級(jí)元素寬度
4. px 絕對(duì)單位
let,var,function,class,import
getAttribute("name")
setAttribute("“name",'1603A')
removeAttribute('name')
js創(chuàng)建對(duì)象:
var obj={name:'alice',age:20} =====> var obj =new Object()
var arr=new Array() ====> var obj= [ ]
====和=====
https://blog.csdn.net/freshlover/article/details/19034079
DOMContentLoaded和load區(qū)別
https://www.cnblogs.com/caizhenbo/p/6679478.html
JavaScript中本地對(duì)象钞支、內(nèi)置對(duì)象和宿主對(duì)象
https://blog.csdn.net/weiyastory/article/details/52837466
splice:數(shù)組實(shí)現(xiàn)插入茫蛹,刪除,替換
插入:arr.splice(索引烁挟,0婴洼,插入的內(nèi)容);
替換:arr.splice(索引替換的數(shù)量,替換的內(nèi)容);‘
刪除:arr.splice(索引撼嗓,刪除數(shù)量);
字符串轉(zhuǎn)換為數(shù)組:split()
數(shù)組轉(zhuǎn)為字符串:join()
預(yù)習(xí)git:
常用 Git 命令清單:
http://www.ruanyifeng.com/blog/2015/12/git-cheat-sheet.html
Git遠(yuǎn)程操作詳解:
http://www.ruanyifeng.com/blog/2014/06/git_remote.html
Git 工作流程:
http://www.ruanyifeng.com/blog/2015/12/git-workflow.html
git分支管理:主要用于團(tuán)隊(duì)協(xié)作開發(fā)
查看分支:git branch
創(chuàng)建分支:git branch 新分支名
切換分支:git checkout 要切換的分支名
創(chuàng)建并切換分支: git checkouit -b 新分支名