open.html 478 B

12345678910111213141516171819202122
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>必开网页</title>
  6. </head>
  7. <body>
  8. </body>
  9. <script>
  10. const urls = [
  11. "https://siyuan.tianyunperfect.cn/",
  12. "https://www.zhixi.com/drawing/73a8069049eee5987ca6b48cc4233d87?page=owner&current=1#open",
  13. "https://www.zhixi.com/view/67d067d8"
  14. ];
  15. for (let i = 0; i < urls.length; i++) {
  16. window.open(urls[i], "_blank");
  17. }
  18. window.close();
  19. </script>
  20. </html>