<!DOCTYPE html>
<html>
<head>
    <title>判断上一页网页地址是否为空</title>
</head>
<body>
    <script>
        // 获取上一页的网页地址
        var previousPage = document.referrer;

        // 判断上一页网页地址是否为空
        if (previousPage !== "") {
            console.log("上一页网页地址不为空");
        } else {
            console.log("上一页网页地址为空");
        }
    </script>
</body>
</html>