<script type= "text/javascript" > |
function _ISIOS(){ |
var ua=navigator.userAgent.toLowerCase(); |
if (ua.match(/iphone\SOS/i)== "iphone os" ){ |
|
return 'ios' ; |
} else if (ua.match(/Android/i)== "android" ){ |
|
return 'android' ; |
} else { |
return 'PC' ; |
} |
} |
var a=_ISIOS(); |
console.log(a); |
if (a== "android" ){ |
location.href= 'android.html' ; |
} |
else if (a== "ios" ){ |
location.href= 'ios.html' ; |
} |
</script> |