JavaScript-Web-API-BOM操作
一、navigator(浏览器)和screen(屏幕):
1.navigator.userAgent:当前浏览器信息
2.screen.width:屏幕宽度
3.screen.height:屏幕高度
二、location(地址)和history(前进、后退):
1.location.href:整个网址
2.location.protocol:协议
3.location.host:域名
4.location.search:查询参数
5.location.hash:哈希
6.location.pathname:路径
7.history.back():后退
8.history.forward():前进