注册入学 登录
柠檬大学-伴我成长 返回首页

a1023456的个人空间 https://www.08nm.com/?2 [收藏] [复制] [分享] [RSS]

日志

浏览器移动端跳转适配

已有 1337 次阅读2012-12-31 15:08 |个人分类:技术分享| 移动

js 版

if(/Android|webOS|iPhone|iPod|BlackBerry/i.test(navigator.userAgent)){ if(window.location.href.indexOf("?mobile")<0){try{window.location.href="http://www.qq.com/mobile/index.htm"}catch(e){}} }

PHP版:

$ua = strtolower($_SERVER['HTTP_USER_AGENT']);

$uachar = "/(nokia|sony|ericsson|mot|samsung|sgh|lg|philips|panasonic|alcatel|lenovo|cldc|midp|mobile)/i";

if(($ua == '' || preg_match($uachar, $ua))&& !strpos(strtolower($_SERVER['REQUEST_URI']),'wap'))
{
    $Loaction = 'mobile/';

    if (!empty($Loaction))
    {
        ecs_header("Location: $Loaction\n");

        exit;
    }

}


来源: 腾讯:http;//www.qq.com和http://blog.sina.com.cn/s/blog_54318f230100u30w.html


路过

鸡蛋

鲜花

握手

雷人

评论 (0 个评论)

facelist

您需要登录后才可以评论 登录 | 注册入学

联系我们|Archiver|小黑屋|手机版|滚动|柠檬大学 ( 京ICP备13050917号-2 )

GMT+8, 2024-5-4 04:28 , Processed in 0.025609 second(s), 19 queries .

Powered by Discuz! X3.5 Licensed

© 2001-2023 Discuz! Team.

返回顶部