我编写了几行 java 脚本代码。但我不确定它是否正确。几个月前,我发布了一个桌面版网站。但是当用户通过手机(如安卓、iPhone 或可能是 Windows 手机)来时,我想重定向一条新路径。这是代码:
// 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.";
}
它是正确的代码吗?