博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
javascript window对象
阅读量:5105 次
发布时间:2019-06-13

本文共 952 字,大约阅读时间需要 3 分钟。

window.navigator:

var appName = navigator.appName;// 浏览器名称

var appVersion = navigator.appVersion;// 浏览器版本
var language = navigator.language;// 浏览器语言
var platform = navigator.platform;// 浏览器平台
var userAgent = navigator.userAgent;// 浏览器User-Agent字符串

window对象有innerWidthinnerHeight属性,可以获取浏览器窗口的内部宽度和高度。内部宽高是指除去菜单栏、工具栏、边框等占位元素后,用于显示网页的净宽高

兼容性:IE<=8不支持。

所以代码可以这么写:

var width = window.innerWidth || document.body.clientWidth;

 

window.screen

screen.width:屏幕宽度,以像素为单位;

screen.height:屏幕高度,以像素为单位;

screen.colorDepth:返回颜色位数,如8、16、24。

 

window.location

var url = 'http://www.xxx.com:8080/path/index.html?page=1&id=2#toHere';

location.protocol; // 'http'

location.host; // 'www.xxx.com'
location.port; // '8080'
location.pathname; // '/path/index.html'
location.search; // '?page=1&id=2'
location.hash; // 'toHere'

要加载一个新页面,可以调用location.assign()。如果要重新加载当前页面,调用location.reload()方法非常方便。

 

window.document

DOM树

 

转载于:https://www.cnblogs.com/Zell-Dinch/articles/5160679.html

你可能感兴趣的文章
在NT中直接访问物理内存
查看>>
Intel HEX 文件格式
查看>>
SIP服务器性能测试工具SIPp使用指导(转)
查看>>
php_扑克类
查看>>
回调没用,加上iframe提交表单
查看>>
(安卓)一般安卓开始界面 Loding 跳转 实例 ---亲测!
查看>>
Mysql 索引优化 - 1
查看>>
LeetCode(3) || Median of Two Sorted Arrays
查看>>
大话文本检测经典模型:EAST
查看>>
待整理
查看>>
一次动态sql查询订单数据的设计
查看>>
C# 类(10) 抽象类.
查看>>
Nginx+Keepalived 实现双击热备及负载均衡
查看>>
Vue_(组件通讯)子组件向父组件传值
查看>>
jvm参数
查看>>
我对前端MVC的理解
查看>>
Silverlight实用窍门系列:19.Silverlight调用webservice上传多个文件【附带源码实例】...
查看>>
2016.3.31考试心得
查看>>
mmap和MappedByteBuffer
查看>>
Linux的基本操作
查看>>