码迷,mamicode.com
首页 > 移动开发 > 详细

移动端跳转网站

时间:2018-01-22 11:11:55      阅读:189      评论:0      收藏:0      [点我收藏+]

标签:ext   androi   row   uil   san   iphone   roi   navig   asc   

<script type="text/javascript">
//判断是否移动端访问
browserRedirect("http://build.whir.net/ahjh/index_wap.aspx");
function browserRedirect(mobileUrl) {
    var sUserAgent = navigator.userAgent.toLowerCase();
    var bIsIpad = sUserAgent.match(/ipad/i) == "ipad";
    var bIsIphoneOs = sUserAgent.match(/iphone os/i) == "iphone os";
    var bIsMidp = sUserAgent.match(/midp/i) == "midp";
    var bIsUc7 = sUserAgent.match(/rv:1.2.3.4/i) == "rv:1.2.3.4";
    var bIsUc = sUserAgent.match(/ucweb/i) == "ucweb";
    var bIsAndroid = sUserAgent.match(/android/i) == "android";
    var bIsCE = sUserAgent.match(/windows ce/i) == "windows ce";
    var bIsWM = sUserAgent.match(/windows mobile/i) == "windows mobile";
 
    if (bIsIpad || bIsIphoneOs || bIsMidp || bIsUc7 || bIsUc || bIsAndroid || bIsCE || bIsWM) {
        window.location.href = mobileUrl;
    }
}
</script>

  

移动端跳转网站

标签:ext   androi   row   uil   san   iphone   roi   navig   asc   

原文地址:https://www.cnblogs.com/ghfjj/p/8327496.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!