JS:window-screen、window-location、window-history

window-screen

JS:window-screen、window-location、window-history

<!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

JS:window-screen、window-location、window-history
直接找一个页面,在控制台可以看到:
JS:window-screen、window-location、window-history

window-history

JS:window-screen、window-location、window-history
window.history : 一条记录
JS:window-screen、window-location、window-history
history.back() : 返回上一层
history.forward() :下一层
history.go() : 参数为步长,去距当前页面的步长位置,如 history.go(-2),即返回上上一层。

上一篇:Vue3迁移笔记(持续更新2021/12/23)


下一篇:A Child's History of England.75