History对象:
window.history对象包含浏览器的历史(url)的集合。
History方法:
history.back()-与在浏览器点击后退按钮相同;
history.forword()-与在浏览器中点击按钮向前相同;
history.go()-进入历史曾经进过的某个页面。
HTML:
<a href="obj.html">跳转</a>
<button id="btn" οnclick="goceshi()">按钮</button>
Js:
function goceshi(){
history.back();
}
Location对象:
window.location 对象用于获得当前页面的地址(url),并把浏览器重定向到新的浏览器页面。
Location对象的属性:
location.hostname返回web主机的域名;
location.pathname返回当前页面的路径和文件名;
location.port返回web主机的端口;
location.protocol 返回所使用的web协议(http://或者https://);
location.href返回当前页面的URL;
location.assign()返回加载新的文档; location.assign("http://www.baidu.com");
function getLoc(){
document.getElementById("").innerHTML=wondow.location.hostname;
}
Screen对象:
window.screen 对象包含用户屏幕的信息;
Screen对象的属性:
screen.avalidWidth-可用屏幕宽度;
screen.avalidHeight-可用屏幕高度;
screen.width-屏幕高度;
screen.height-屏幕高度;