一window(获取窗口)
与global对象等价属性
window.open("url");
alert confirm (可以作为判定条件)prompt
setTimeout只一次
setInterval可以是多次(可以做计时器)
参数是函数
返回值是id
clearInterval
clearTimeout
二navigator(获取浏览器信息)
navigate.userAgent
由客户机发送服务器的user-agent头部的值,我们一般用这个值来判定用户所使用的是什么浏览器。
三screen(获取屏幕大小,不常用)
四history(获取历史页面)
history.forword();
history.back();只能一个
history.go();可以后退,前进多个
history.back()==history.go(-1);
hostory.pushState(,);给浏览器添加新的记录
五location(获取当前URL)
location.reload();
location.href="";
网友评论