跟踪锚定电话链接的点击次数

发布于 2024-12-01 22:42:57 字数 192 浏览 3 评论 0原文

我使用电话锚链接在移动智能手机浏览器上嵌入锚链接。

<a href='tel:xxx-yyy-zzzz'>xxx-yyy-zzzz</a> 

我的理解是智能手机拦截该链接并允许用户直接拨打电话。

我如何跟踪用户点击此链接?

使用 302 重定向?

I am embedding anchor links on mobile smart phone browsers using the tel anchor link.

<a href='tel:xxx-yyy-zzzz'>xxx-yyy-zzzz</a> 

My understanding is that the smart phone intercepts the link and allows the user to directly call.

How can i track the user click on this link?

use a 302 redirect?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

滥情空心 2024-12-08 22:42:57

唯一的答案是使用重定向,抱歉。

<a href="redirect.php?number=123-456-798">Call Us</a>

然后,在redirect.php上对您传递的号码(或默认号码)执行302重定向到tel协议。

记录redirect.php 上的点击次数

The only answer is to use a redirect, sorry.

<a href="redirect.php?number=123-456-798">Call Us</a>

Then, on redirect.php do a 302 redirect to the tel protocol for the number you have passed (or the default number).

Record the hits on redirect.php

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文