讓你的網頁適合在 iPhone 與 iPad 上瀏覽
http://ios.com.tw/article.php?id=72
<script type="text/javascript">
if (navigator.userAgent.indexOf('iPhone')!=-1) {window.location.href = 'mobile.html'} else if (navigator.userAgent.indexOf('ipad')!=-1) {window.location.href = 'ipad.html'} else {window.location.href = 'pc.html'};
</script>
上面的寫法,可以讓判斷使用者使用的裝置,導引到適合不同裝置的頁面
P.S.
以此javascript語法也可以判斷使用者的瀏覽器,如下
if(navigator.userAgent.indexOf("MSIE")>0) {
window.location.href = 'desktop.html'
}
if(isFirefox=navigator.userAgent.indexOf("Firefox")>0){
window.location.href = 'desktop.html'
}
if(isSafari=navigator.userAgent.indexOf("Safari")>0) {
window.location.href = 'desktop.html'
}
if(isCamino=navigator.userAgent.indexOf("Camino")>0){
window.location.href = 'desktop.html'
}
if(isMozilla=navigator.userAgent.indexOf("Gecko/")>0){
window.location.href = 'desktop.html'
}