我们正在使用电话链接(例如<a href="tel:+1-303-499-7111">+1 (303) 499-7111</a>
),以便人们可以通过他们的设备给我们打电话。我们如何将链接重定向到具有跟踪像素的其他网页,以便我们可以将电话转换为转化?
答案 0 :(得分:2)
如果您想一次进行两次重定向,则需要执行一些脚本代码
<a onClick="makeCall()">+1234567890</a>
脚本是
function makeCall(){
window.open('_link is here_', '_blank');
window.open('tel:+1303499-7111', '_parent');
}
答案 1 :(得分:1)
如果您将像素作为img,则可以按照以下步骤进行跟踪:
<a href="tel:+1-303-499-7111" onclick=trackPixel()>+1 (303) 499-7111</a>
function trackPixel() {
const pixelURL = `https://static.pixel.com/ase/25565/1553/aa.js`;
new Image().src = pixelURL;
}
这将在用户单击电话号码时触发URL。
答案 2 :(得分:0)
使用tel://实际上可以正常使用,您所要做的就是创建一个立即致电链接,该链接转到您的脚本以跟踪该呼叫,然后重定向至tel://链接
这是我的测试会话中的示例标头。
Connection: Keep-Alive
Content-Length: 0
Content-Type: text/html; charset=UTF-8
Date: Thu, 21 Nov 2019 20:24:08 GMT
Keep-Alive: timeout=5, max=100
Location: tel://5551212
Server: Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/5.6.40
X-Powered-By: PHP/5.6.40