index.html 557 B

12345678910111213141516171819202122232425262728293031
  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. alert("pc");
  13. window.location.href ="./desktop11/index.html";
  14. }
  15. else
  16. {
  17. alert("phone");
  18. window.location.href ="./mobile/index.html";
  19. }
  20. }
  21. </script>
  22. </head>
  23. <body>
  24. </body>
  25. </html>