var browser={versions:function () {var u=navigator.useragent, app = Navigator.appversion; return {//Mobile terminal browser version information Trident:u.indexof (' Trident ') >-1,//ie kernel presto:u.indexof (' presto ') >-1,//oper A core webkit:u.indexof (' AppleWebKit ') >-1,//Apple, Google kernel gecko:u.indexof (' Gecko ') >-1 && u.indexof (' Khtml ') = =-1,//Firefox core mobile:!! U.match (/applewebkit.*mobile.*/) | | !! U.match (/applewebkit/),//Whether for Mobile terminal iOS:!! U.match (/\ (i[^;] +;( U;)? Cpu.+mac OS x/),//ios terminal Android:u.indexof (' Android ') >-1 | | U.indexof (' Linux ') >-1,//android terminal or UC Browser iphone:u.indexof (' IPhone ') >-1 | | U.indexof (' Mac ') >-1,//whether for iphone or Qqhd browser ipad:u.indexof (' ipad ') >-1,//whether IPad webapp:u.indexof (' Safa Ri ') = =-1//whether the Web should be program, no header with bottom}; } (), Language: (Navigator.browserlanguage | | navigator.language). toLowerCase ()} if (Browser.versions.ios | | browser.versions.iPhone | | browser.versions.iPad) { Window.location= "Https://itunes. Apple.com/xxx ";} else if (browser.versions.android) {window.location= "http://xxx/xxx.apk";}
JavaScript determines whether the mobile terminal is iOS or Android