qq_login_error.html 450 B

123456789101112131415161718192021
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Title</title>
  6. </head>
  7. <body>
  8. <script>
  9. // 检测是否为移动设备(包括手机和平板)
  10. function isMobileDevice() {
  11. return (/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent));
  12. }
  13. if (isMobileDevice()) {
  14. location.href = "/"
  15. } else {
  16. window.close();
  17. }
  18. </script>
  19. </body>
  20. </html>