window-screen
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>window-screen</title>
</head>
<body>
<script>
// 本人屏幕分辨率 1920 * 1080
alert(screen.availWidth); //显示屏幕的宽度(除任务栏宽度)
alert(screen.availHeight); //显示屏幕的高度(除任务栏宽度)
</script>
</body>
</html>
window-location
直接找一个页面,在控制台可以看到:
window-history
window.history
: 一条记录history.back()
: 返回上一层history.forward()
:下一层history.go()
: 参数为步长,去距当前页面的步长位置,如 history.go(-2),即返回上上一层。