open.html 570 B

1234567891011121314151617181920212223242526
  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. if (i === urls.length - 1) {
  17. window.open(urls[i], "_self");
  18. } else {
  19. window.open(urls[i], "_blank");
  20. }
  21. }
  22. </script>
  23. </html>