一、Window对象
具体详情请看:Window 对象 | 菜鸟教程
注:window可省略
1、属性
document,即DOM对象
location
navigator
screen
history
sessionStorage、localStorage
————————————————————
innerHeight、innerWidth 文档区域宽高
outerHeight、outerWidth 浏览器整体宽高
pageXOffset、pageYOffset 相对于左上角的横纵距离
2、方法
alert、confirm、prompt 对话框
atob、btoa 解码/创建base64字符串
setTimeout、clearTimeout 延时器
setInterval、clearInterval 定时器
open、close 开启关闭
二、history
history.go(url) 加载历史列表中某个具体页面
history.back() 加载历史列表中前一个页面
history.forward() 加载历史列表中下一个页面
三、location
location.href 完整url
location.host 主机名和端口号
location.hostname 主机名
location.port 端口号
location.search URL的查询部分
location.reload() 重新载入当前文档
location.assign() 载入一个新的文档
location.replace() 新文档替换当前文档
四、navigator
navigator.language
// 其他如浏览器版本号等
五、screen
screen.availHeight 屏幕宽高(不包括任务栏)
screen.availWidth
screen.height 屏幕总宽高
screen.width
六、sessionStorage、localStorage
x x.setItem(name,value) 存储
xx.getItem(name) 读取
xx.removeItem(name) 删除
xx.clear() 清空