`

jquery 判定用户访问网址的方式

阅读更多

// jquery 判定用户访问网址的方式:PC,ipad,iphone os,android

 

// 判定是PC机  还是  iapd和iphone

$(function(){

var ua = navigator.userAgent.toLowerCase(); 

    if(ua.match(/iPad/i)=="ipad" || ua.match(/iPad/i)=="iphone os" || ua.match(/iPad/i)=="android") { 

 

        alert(ua.match(/iPad/i));

        

       return true; 

    } else { 

 

      alert('电脑');

       location.href = "http://192.168.1.63:85/indexweb.php";

       return false; 

    } 

 

})

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics