我写了一些简单的代码来查找设备的类型:
$(document).ready(detectDevice);
function detectDevice() {
if (window.innerWidth > 768) {
var device = "Desktop";
console.log('=======device======', device);
} else if (window.innerWidth < 767 && window.innerWidth > 481) {
var device = "iPad";
} else if (window.innerWidth < 480) {
var device = "Mobile Phone";
}
}
但我想找到正在使用该应用程序的设备的正确型号名称。我不想编写navigator.userAgent
使用浏览器查找的代码。
请有人告诉我是否有任何方法可以使用 JavaScript 或 jQuery 找到它?