赞
踩
- // 设备类型
- function deviceJudge() {
- if (/(iPhone|iPad|iPod|iOS)/i.test(navigator.userAgent)) {
- //alert(navigator.userAgent);
- //苹果端
- return 'ios'
- } else if (/(Android)/i.test(navigator.userAgent)) {
- //alert(navigator.userAgent);
- //安卓端
- return 'android'
- } else {
- //pc端
- return 'pc'
- };
- }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。