江南南岸 发表于 2022-9-26 23:44:36

落地页在手机上无法正常跳转

本帖最后由 江南南岸 于 2022-9-26 23:51 编辑

落地页在手机上打开后,一步步操作,到最后一步,点击callbutton按钮,跳转到offer页面,最后这一步在手机上一直出问题,点击callbutton对应的url就是追踪里的click url,我用的是自定义二级域名的url(追踪要求用二级域名),但是点击callbutton跳转的时候,直接就跳到了这个二级域名对应的一级域名,就卡在这里了。即:我的clickurl用的是http://xx.aaa.com/click,结果点击callbutton跳转到了aaa.com,当然这个aaa.com是打不开的,因为这就是为了追踪而做的一个自定义域名。而且奇怪的是只有手机打开会出现这种情况,电脑上能正常跳转,这个是怎么回事呢,求大佬指点一下.代码和报错截图如下


script type="text/javascript">
                window.addEvent('domready', function() {
                        var spinner = document.getElementById("spin");
                        swal({
                                        title: "话术1!!!!",
                                        text: "话术二",
                                        imageUrl: 'index_files/win.png',
                              },function(){
                                        spinner.className = spinner.className + 'spinAround';
                                        setTimeout(function(){
                                                swal_2();
                                        },6500);
                              
                              });
                        var swal_2 = function (){
                              swal({
                                        title: "话术三!",
                                        text: "话术4!",
                                        type: "success"
                              },function(){
                                        spinner.className = spinner.className + ' spinAround2';
                                        setTimeout(function(){
                                                swal_3();
                                        },6500);
                              
                              });
                        }
                        var swal_3 = function (){
                              swal({
                                        title: "话术五",
                                        text: "话术六 ",
                                        type: "success"
                              },function(){
                                        document.location = document.getElementById("target_link").href;
                              });
                        }
                });
                        
                </script>
      <script type="text/javascript" src="https://xxx.aa.online/track.js?rtkcmpid=63aefaa1913def0001f38h0b"></script>
</head>
<body class="stop-scrolling">
<div class="container">
<div class="bar-nav"></div>
<h1 class="scroll-left" colspan="2" style="width:100%;color:#ffffff; text-align: center; display: block; margin: 0 auto; background-color:#1d71cf; font-size: 22px; letter-spacing: 2px; text-transform: uppercase;">
<p>话术7</p></h1>
<main>
<div class="content">
<div class="main-content">
<div class="header clearfix">
<h2 class="headline" style="text-align:center;"><strong>
话术八</strong></h2>
</div>
<div id="spinner">
<img id="spinBG" width="435" src="./index_files/11.gif">
<img id="spin" src="./index_files/prizewheel_ip8b.png">
<img id="win" src="./index_files/33.png">
</div>
</div>
</div>
</main>
</div>
<footer>
<div class="legal_links" style="margin-top:2em!important;">Torpedo Digital 。</div>
</footer>
<!-- <script type="text/javascript">
                (function(window, location) {
                        var url_with_variables = location.href;
                        history.replaceState(null, document.title, location.pathname + location.search + "#!/back");
                        history.pushState(null, document.title, location.pathname + location.search);
                        window.addEventListener("popstate", function() {
                              if(location.hash === "#!/back") {
                                        history.replaceState(null, document.title, location.pathname + location.search);
                                        setTimeout(function() {
                                                location.replace(url_with_variables);
                                        }, 0);
                              }
                        }, false);
                }(window, location));
      </script>-->

<a id="target_link" class="visible" href="http://xxx.aa.online/click"></a>


chenkui 发表于 2022-9-27 09:03:22

本帖最后由 chenkui 于 2022-9-27 09:05 编辑

使用插入代码 重新发下代码


好像最后一句 <a id="target_link" class="visible" href="http://xxx.aa.online/click">这里是不是有文字或图片</a>

河小马 发表于 2022-9-27 09:31:16

没有看到完整代码

你可以自己在chrome下按F12,然后再console 里看看各个值是多少

一般电脑上能打开的,mobile 也没有问题,现在页面都是responsive 的, DOM 的div 一般不会发生什么便话

江南南岸 发表于 2022-9-27 11:56:47

本帖最后由 江南南岸 于 2022-9-27 12:20 编辑

河小马 发表于 2022-9-27 09:31
没有看到完整代码

你可以自己在chrome下按F12,然后再console 里看看各个值是多少

我又试了一遍,电脑上按F12后,进入手机模式,确实可以正常跳转。但在手机上确实就直接跳转到了根域名。但我其他的落地页在手机上就能正常跳转(排除是手机的问题)。今天插入完整代码点提交就提示我呗advertcn block了,因此发不上来。我按F12在电脑上看到,跳转到offer前后,各有两条执行的消息,截图如下,但电脑上能正常跳转。落地页url我私发给您了,辛苦帮忙看下是哪里问题呢,非常感谢河马大佬,

江南南岸 发表于 2022-9-27 12:10:22

本帖最后由 江南南岸 于 2022-9-29 12:02 编辑

河小马 发表于 2022-9-27 09:31
没有看到完整代码

你可以自己在chrome下按F12,然后再console 里看看各个值是多少

这个附件是代码,用论坛代码粘贴,总提示我呗block,只能发下附件了

河小马 发表于 2022-9-27 13:55:03

江南南岸 发表于 2022-9-27 11:56
我又试了一遍,电脑上按F12后,进入手机模式,确实可以正常跳转。但在手机上确实就直接跳转到了根域名。但 ...

我在手机上测试了,没有问题

江南南岸 发表于 2022-9-27 14:18:25

河小马 发表于 2022-9-27 13:55
我在手机上测试了,没有问题

我去,这个很奇怪,我用我的手机测试不行,我朋友他测了也不行。。第一次遇见这种情况,不会是我们手机网络慢导致的吧,

newmobi 发表于 2022-9-27 21:18:20

可能单纯就是不兼容你的浏览器。
有的LP在Android下可以正常,但是在iOS下就不行,反之亦然
页: [1]
查看完整版本: 落地页在手机上无法正常跳转