UNPKG

jlb-tools

Version:
15 lines (14 loc) 328 B
/** * 获取手机操作系统类型 * @return {string} ios android */ function getDeviceModel() { var ua = navigator.userAgent; if (/Android|BlackBerry|IEMobile/i.test(ua)) { return 'android'; } else if (/iPhone|iPad|iPod/i.test(ua)) { return 'ios'; } return 'Unknown'; }; module.exports = getDeviceModel;