<script type= "text/javascript" > |
function _IsIOS(){ |
var ua =navigator.userAgent.toLowerCase(); |
if (ua.match(/iPhone\sOS/i) == "iphone os" ){ |
location.href= 'ios.html' ; |
return 'ios' ; |
} else if (ua.match(/Android/i)== "android" ){ |
return 'android' ; |
} else { |
location.href= 'index.html' ; return 'pc' ; |
} |
} |