isMobile.js 402 B

12345678910111213141516
  1. ;(function () {
  2. // 判断移动端
  3. var sUserAgent = navigator.userAgent.toLowerCase()
  4. if (
  5. /ipad|iphone|midp|rv:1.2.3.4|ucweb|android|windows ce|windows mobile/.test(
  6. sUserAgent
  7. )
  8. ) {
  9. //跳转移动端页面
  10. if (window.location.href.indexOf('mobile') < 0) {
  11. window.location.replace('/user/m_user') //跳转后没有后退功能
  12. }
  13. } else {
  14. // PC端
  15. }
  16. })()