isMobile.js 449 B

1234567891011121314
  1. (
  2. // import store from ''
  3. function() {
  4. console.log("判断移动端");
  5. var sUserAgent = navigator.userAgent.toLowerCase();
  6. if (/ipad|iphone|midp|rv:1.2.3.4|ucweb|android|windows ce|windows mobile/.test(sUserAgent)) {
  7. console.log("移动端-----");
  8. //跳转移动端页面
  9. // window.location.href()
  10. // window.location.replace("n_user");//跳转后没有后退功能
  11. } else {
  12. console.log("PC端");
  13. }
  14. })();