我目前正在使用它來檢測訪問者是否安裝了Flash,如果不是,我假設他們是iPhone用戶,但現在看來它並不總是像我希望的那樣工作,因爲有時他們會重定向到我的網站的Flash版本和某個誰得到安裝也閃重定向到我的網站的iPhone版本的人如何檢測是否是iOS設備並重定向?
<!DOCTYPE html>
<html>
<head>
<script src="http://www.featureblend.com/flash_detect_1-0-4/flash_detect.js" type="text/javascript" charset="utf-8"></script>
<script type="text/javascript">
if(!FlashDetect.installed){
window.location = "?flash=false";
}else{
window.location = "?flash=true";
}
</script>
</head>
事情是我將如何檢測,如果他們是用iPhone/iPad/iPod的/ AppleTV的類似的東西,並將它們重定向到flash = false URL,如果它們不屬於上述情況,則會重定向到flash = true?
我試圖找到,但確實無法找到確切的我要找的
謝謝你,聖誕快樂給大家。
您使用什麼服務器端語言? – Virendra 2011-12-25 20:26:23
@Virendra我使用index.php – Ali 2011-12-25 20:29:51
如果您使用PHP,您也可以使用.htaccess來做到這一點 – Virendra 2011-12-25 20:33:25