猎豆优选官网

index.html 498B

123456789101112131415161718
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>酷炫优选</title>
  6. <script type="text/javascript">
  7. if(!(navigator.userAgent.match(/(phone|pad|pod|iPhone|iPod|ios|iPad|Android|Mobile|BlackBerry|IEMobile|MQQBrowser|JUC|Fennec|wOSBrowser|BrowserNG|WebOS|Symbian|Windows Phone)/i))) {
  8. //非移动端
  9. window.location.href="./home/index.html";
  10. }else{
  11. window.location.href="./move/index.html";
  12. }
  13. </script>
  14. </head>
  15. <body>
  16. </body>
  17. </html>