我想检测windows,mac os x,andorid ios和windows phone,并使用javascript或php重定向到相关页面。 我试图使用这个移动检测js插件https://github.com/hgoebl/mobile-detect.js的设备和操作系统检测脚本,但我不知道如何检测Windows和Mac桌面用户。
function deviceDetectionScript() {
var md = new MobileDetect(window.navigator.userAgent);
if (md.mobile() && md.phone() && md.tablet()) {
If(ios) {
//do something
}
If(android) {
//do something
}
If(windows) {
//do something
}
If(macOSX) {
//if mac OS X (desktop)
}
If(windows) {
//windows desktop users
}
} else {
// do something else
}
}
由于