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

联 系 人:李总
联系电话:13759574266
在线 QQ:89417157
邮箱:13759574266@qq.com
微信号:ynlongtou
地址:昆明市滇缅大道旁昆建路5号108智库空间A座4楼

网站技术

不同分辨率下获取不同js文件

判断浏览器是手机还是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>