第 14 课 3 / 18 | 编码:L14-07
核心知识

BOM:浏览器对象模型

BOM 关注窗口、地址、历史、屏幕和计时器等浏览器环境。

  • location 描述当前地址
  • history 提供历史导航
  • screen 描述设备屏幕信息
console.log(location.href);
console.log(history.length);
console.log(screen.width);