标签:http io os 使用 java ar strong sp cti
如何判断是否是 iPad 浏览器呢,关键是看它的 User Agent 中是否有 iPad。iPad 使用的是 Safari Mobile 浏览器,他的的 User Agent 是:
Mozilla/5.0 (iPad; U; CPU OS 3_2 like Mac OS X; en-us) AppleWebKit/531.21.10 (KHTML, like Gecko) Version/4.0.4 Mobile/7B334b Safari/531.21.10
Javascript
function is_iPad(){
var ua = navigator.userAgent.toLowerCase();
if(ua.match(/iPad/i)=="ipad") {
return true;
} else {
return false;
}
}
PHP
$is_iPad = (bool) strpos($_SERVER[‘HTTP_USER_AGENT‘],‘iPad‘);
htaccess
RewriteCond %{HTTP_USER_AGENT} ^.*iPad.*$
RewriteRule ^(.*)$ http://ipad.fairyfish.net [R=301]
首发于:http://www.njweb.cn/index.php/post/17.html
标签:http io os 使用 java ar strong sp cti
原文地址:http://www.cnblogs.com/suxua31/p/3988991.html