这是一个新生事物。
我有外部联系。
<a href="http://www.example.com" target="_blank">
现在,我希望每当连接点点点点击时,追踪谷歌·阿多德斯的转换。
为此,我增列一个<代码>click的活动,该活动含有谷歌图像。 图像是指转换。 为了绝对确保图像在用户离开之前被装上,我使用图像<代码><>load/code>活动着手实现原始链接指标。
$("#linkname").click(function() {
var element = document.createElement("img");
element.onload = function() { ..... };
element.setAttribute("src", "http://www.googleadservices.com/....");
document.body.appendChild(element);
});
This will work fine using location.href
. However, it won t work for target="blank"
links.
I m baffled as to what to put into the onload function in order to open a new window.
我可以使用<条码>window. open,因为它将被人pop住。 (因其位于图像
onload
上。) 这一事件看上去的只是方案性的呼吁,与被点击的联系毫无关系。 此外,电话窗口。 在没有任何选择的情况下开放,对谷歌 Chrome没有任何控制。I can t make the
click
event continue its normal course because I have to wait until the image is loaded, which is an asynchronous operation!
我基本上需要的是打开<代码>target=_blank”的途径,这种方式在方案上连接起来,可能无法做到这一点,因为它可能受到波长老的干扰。
或者,在让连接点的原始<条码>click条码>时,我还需要可靠地计算点击。 活动继续如期进行。
没有人会想什么?