index.html 512 B

1234567891011121314151617181920212223242526272829
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title>Document</title>
  8. <script>
  9. window.onload=function(){
  10. if(screen.width>1024)
  11. {
  12. window.location.href ="./desktopB/index.html";
  13. }
  14. else
  15. {
  16. window.location.href ="./mobileB/index.html";
  17. }
  18. }
  19. </script>
  20. </head>
  21. <body>
  22. </body>
  23. </html>