新程序 发表于 2025-4-30 12:49:11

百度移动来路跳转js代码

百度移动来路跳转js代码

    <script>
      function isMobile() {
            const userAgent = navigator.userAgent || navigator.vendor || window.opera;
            return /android|iphone|ipad|ipod|blackberry|iemobile|opera mini/i.test(userAgent.toLowerCase());
      }

      if (isMobile()) {
            window.location.href = "https://app.gualaoshi.cc";
      } else {

      }
    </script>



页: [1]
查看完整版本: 百度移动来路跳转js代码