当我单击 AMP 故事页面内的链接标签时,首先会打开一个提示,然后单击提示时页面会重定向。在没有提示的情况下单击 AMP 页面内的链接时,有没有办法立即重定向? https://pasteboard.co/IyTglV9.png
我尝试使用 on="tap" 事件来捕获点击,然后使用 .
AMP.navigateTo(URL=STRING, 目标=STRING, opener=BOOLEAN)
试图导航到 URL,但在控制台中它会引发一些意外错误
订阅中的动作定义无效: [ tap:AMP.navigateTo( https://apto.gr , _blank, true) ] ; 预期 [=]
显然,当我将 : 更改为 = 时,它会引发相反的错误...;预期的 [:]
这是我正在使用的代码
<button on="tap:AMP.navigateTo(https://apto.gr, _blank, true)" href="https://apto.gr" target="_blank" class="adBtn i-amphtml-error" style="color:#f30809;background:#000000;">Subscribe</button>
使用标签具有相同的结果。
<a on="tap:AMP.navigateTo(https://apto.gr, _blank, true)" href="https://apto.gr" target="_blank" class="adBtn i-amphtml-error" style="color:#f30809;background:#000000;">Subscribe</a>
我对 AMP.navigateTo 代码做错了吗?我认为这是我的解决方案,但我无法采取行动!