首页自定义端口随机跳转

<html>
<head>
    <script>
        var arr =
            "https://53.com," +
            "https://49.com," +
            "https://46.com," +
            "https://45.com," +
            "https://43.com," +
            "https://42.com," +
            "https://32.com," +
            "https://30.com," +
            "https://64.com," +
            "https://63.com," +
            "https://62.com," +
            "https://61.com," +
            "https://59.com," +
            "https://57.com," +
            "https://56.com," +
            "https://55.com,";

        arr = arr.split(",");

        var rand = parseInt(Math.random() * arr.length);
        
        window.location.href = arr[rand] + ":443";
    </script>
</head>
<body></body>
</html>