网站技术 您现在的位置是:网站首页 > 网站技术

判断浏览器是手机还是pc

<script type="text/javascript">

        var type = navigator.userAgent.match(/.*Mobile.*/)?"mobile":"pc";

        if(type=="pc"){

            $.getScript("http://vc3.cn/Public/home/js/jquery.flexslider.js",function(){

            });

        }

</script>


jquery的写法

<script type="text/javascript">

        var strFullPath=window.location.href;

        var strPath=window.location.pathname;

        var pos=strFullPath.indexOf(strPath);

        var prePath=strFullPath.substring(0,pos);

        if($(window).width()>789){

            $.getScript(prePath+"/Public/home/js/jquery.flexslider.js",function(){});

        }

</script>