Blame view

index_zq.html 1.05 KB
5cd946c8   Yang Xiaoxiao   .
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
  <!DOCTYPE >
  <html>
  
  <head>
  	<script src="https://code.jquery.com/jquery-3.1.1.min.js"></script>
  	<title>中科视语</title>
  	<meta name="keywords" content="中科视语,人工智能"/>
  	<meta name=”description” content="中科视语王金桥团队"/>
  </head>
  
  <body>
  	<script type="text/javascript">
  		$(document).ready(function () {
              var system = {
  				win:false,
  				mac:false,
  				xll:false,
  				ipad:false
              };
              var p = navigator.platform;
              system.win = p.indexOf('Win')==0;
              system.mac = p.indexOf('Mac')==0;
              system.xll = (p=='Xll')||(p.indexOf('Linux')==0);
  
              system.ipad = (navigator.userAgent.match(/iPad/i)!=null)?true:false;
  
              if(system.win||system.mac||system.xll||system.ipad){
                  window.location.href = "zhongke_vision/index.html"
              }
              else {
                  window.location.href = "zhongke_mobile_2/index.html"
  
              }
  
              // window.location.href = "zhongke_mobile/index.html"
  
          })
  
  
  
  
  
  	</script>
  </body>
  
  </html>