js_浏览器对象

Posted 眼镜儿

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js_浏览器对象相关的知识,希望对你有一定的参考价值。

1. 浏览器对象

window

  • window对象不但充当全局作用域,而且表示浏览器窗口
  • innerWidth : 浏览器内部宽度。 innerHeight :浏览器内部高度
  • outerWidth / outerHeight  整个浏览器的宽高

navigator

  • 表示浏览器信息
  • navigator.appName :  浏览器名称
  • navigator。appVersion : 浏览器版本
  • navigator.language : 浏览器设置的语言
  • navigator.platform : 操作系统的类型
  • navigator.userAgent : ua

screen

  • screen.width : 屏幕宽度
  • screen.height : 屏幕高度
  • screen.colorDepth : 返回颜色位数

location : 当前页面的url信息 

  • location.href
  • location.protocol
  • location.host
  • location.port
  • location.pathname
  • location.search
  • location.hash

document

  • 表示当前页面,是整个dom的根结点
  • document.title  
  • document.getElementById()
  • document.getElementTagName()  
  • document.cookie  ; ‘v=123; remember=true; prefer=zh‘

history

  • history.back()  后退
  • history.forward()  前进
  •           

以上是关于js_浏览器对象的主要内容,如果未能解决你的问题,请参考以下文章

web代码片段

VSCode自定义代码片段——JS中的面向对象编程

VSCode自定义代码片段9——JS中的面向对象编程

Atom编辑器折腾记_(15)JS代码片段补全(插件:javascript-snippets)

js代码片段

js-权威指南学习笔记14