1234567891011121314151617181920212223242526 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <title>必开网页</title>
- </head>
- <body>
- </body>
- <script>
- const urls = [
- "https://siyuan.tianyunperfect.cn/",
- "https://www.zhixi.com/drawing/73a8069049eee5987ca6b48cc4233d87?page=owner¤t=1#open",
- "https://www.zhixi.com/view/67d067d8"
- ];
- for (let i = 0; i < urls.length; i++) {
- if (i === urls.length - 1) {
- window.open(urls[i], "_self");
- } else {
- window.open(urls[i], "_blank");
- }
- }
- </script>
- </html>
|