screen对象
属性
screen.width
属性返回访问者屏幕宽度。
screen.height
属性返回访问者屏幕的高度
screen.availWidth
属性返回访问者屏幕的宽度,减去诸如窗口工具条之类的界面特征
screen.availHeight
属性返回访问者屏幕的高度,减去诸如窗口工具条之类的界面特征。
screen.colorDepth
属性返回用于显示一种颜色的比特数
screen.pixelDepth
属性返回屏幕的像素深度
localhost
获取浏览地址
localhost.href;
改变浏览地址
localhost.href=“http://baidu.com”;
这样就可以直接跳转到百度的页面
本地浏览历史
var history = window.history;
history=你浏览器的浏览历史
计时器
window.setInterval()方法
每隔一段时间执行一次方法
有两个参数,第一个是执行的js代码,第二个是执行的间隔时间
方法会不停地调用函数
var interval = setInterval(function () {
var date=new Date();
console.log(date.toLocaleDateString())
},1000);
console.log(interval);
1
2
3
4
5
每隔一秒会计数一次
关闭方法:window.clearInterval()
window.setTimeout()
有两个参数,第一个是要调用的js代码,第二个是在执行前需要等待的时间
在一段时间内调用函数
只执行一次
setTimeout(function () {
alert("123");
},3000);
1
2
3
将会在三秒之后弹出内容为123的消息对话框
关闭方法:window.clearTimeout()