前端實習(xí)日記
? ?在第二大學(xué)遠程實習(xí)的實習(xí)還在繼續(xù),最近在忙畢業(yè)的事情,還好在指導(dǎo)老師的指導(dǎo)下論文沒有啥問題,今天晚上有點想吧uniapp的項目做完在睡覺,沖還是要沖的!明天繼續(xù)加油。
? 今日總結(jié):復(fù)習(xí)JS基礎(chǔ)
從基礎(chǔ)知識到JS-Web-API
①BOM操作(常用)
1.navigator
var ua=navigator.userAgent;//獲取瀏覽器特性,以字符串的形式返回
var isChrome=ua.indexOf('chrome');//獲取瀏覽器類型
2.screen 屏幕
console.log(screen.width);
console.log(screen.height);
3.location 地址url
console.log(location.href);=>整個url
console.log(location.protocol);=>獲取協(xié)議 :'http' 'https'
console.log(location.host);=>域名 class.imooc.com
console.log(location.pathname);=>返回路徑:project/index.html
console.log(location.search);=>返回?號后面的字符
console.log(location.hash);=>#號后面的hash
4.history
history.back();
history.forward();
標(biāo)簽: