window 浏览器窗口对象
window.innerWidth //浏览器窗口内部宽度(包括滚动条)
window.innerHeight //浏览器窗口内部高度(包括滚动条)
在用window事件时我们会遇到兼容问题:
兼容写法
var WIDTH = window.innerWidth||document.documentElement.clientwidth||document.body.clientWidth
Height的写法和Width一样
此写法兼容ie5 6 7 8
window.open("网址路径") //打开窗口
widow.close() //关闭窗口
关闭窗口时,必须独立打开才能关闭
location.hostname //web主页域名
location.pathname // 当前页面路径
location.port //端口号(一般为80 443)
location.href //整个URL(网页地址)
location.protocal //web协议
常见的协议:http https ftp file
http: 免费 安全系数相对较低 端口是80
https:收费 比较安全 默认端口是443
history.back() //与浏览器点击后退按钮相同
history.forward() //与浏览器中点击前进按钮相同
history.go() //括号内:正数 表示前进几个页面
// 负数 表示后退几个页面