-
- function is_iPad(){
- var ua = navigator.userAgent.toLowerCase();
- if(ua.match(/iPad/i)=="ipad") {
- true を返す;
- } else {
- false を返します。
- }
- }
复制代码
2、php实现
-
-
//方法1 - $is_iPad = (bool) strpos($_SERVER['HTTP_USER_AGENT'],'iPad');
//方法2
- $agent = strto lower($_SERVER['HTTP_USER_AGENT']);
- $is_pc = (strpos($agent, 'windows nt')) ?真/偽;
- $is_iphone = (strpos($agent, 'iphone')) ?真/偽;
- $is_ipad = (strpos($agent, 'ipad')) ?真/偽;
-
- if($is_pc){
- echo "PC机"; //by http://bbs.it-home.org
- }
- if($is_iphone){
- echo "iPhone";
- }
- if($is_ipad){
- echo "iPad";
- }
- ?>
-
复制代码
3、htaccess
-
- RewriteCond %{HTTP_USER_AGENT} ^.*iPad.*$
- RewriteRule ^(.*)$ http://ipad.jbxue.com [R=301]
-
复制發
果如iPad のポータルです。iPad の画面にジャンプします。
|