我編寫了幾行java腳本代碼。但我不確定這是否正確。 幾個月前我發佈了一個桌面版網站。但是當用戶通過移動設備(如android,iPhone或可能是windows phone)時,我想重新定向一條新路徑。這裏是代碼:重定向到移動網站
// JavaScript Document
var uAgent = navigator.userAgent.toLowerCase();
if(uAgent.indexOf("android") > -1 || uAgent.indexOf("iphone") > -1 || uAgent.indexOf("windows phone") > -1) {
window.location = "http://website path will come here.";
}
這是正確的代碼?
屬於上http://codereview.stackexchange.com/ – Quentin
http://stackoverflow.com/questions/6666907/how-to-detect-a-mobile-device-with-javascript可能重複 –