/* 是否移动设备 */ var mobileDrive = /android/i.test(navigator.userAgent)||/iphone/i.test(navigator.userAgent); if(mobileDrive){ /* 移动设备 + 受访域名为PC = 跳转到移动页面 */ window.location.href='http://m.hfengcn.com/contact/'; }else{ /* 非移动设备 + 受访域名为MOBILE = 跳转到移动页面 */ }