我想动态交换包含电话号码的图像。
我遵循中给出的步骤http://www.callrail.com/docs/web-integration/dynamic-number-insertion/images/但图像未交换。
我安装了插件CallRail电话呼叫跟踪,设置了api keythrough Call rail帐户,并将javascript代码粘贴到页面的页脚。
我保存了目的地号码tollfree的图像。Web服务器上图像文件夹中的png将使用指定的命名约定i.etollfree。8005676745.png
然后,我用相同的命名约定I保存了跟踪号图像。e免费。8889975025.png(8889975025是跟踪编号)位于Web服务器上的同一imagefolder中。
然后,我将url(“images/tollfreecolavery.png”)替换为url(“images/tollfreecolavery.8005676745.png”)
早期代码:
<div id="main"><div id="tollfreeoverlay" ></div>
and *given the reference through css *
#tollfreeoverlay {
background: url("images/TollFreeOverlay.8005676745.png") no-repeat
scroll 0px 0px transparent;
height: 32px;
position: absolute;
right: -120px;
top: -310px;
width: 540px;
z-index: 99;
}
之后,我将其移动到主体内部的内联样式,即
<div style="background:url(images/TollFreeOverlay.8005676745.png) no-repeat scroll 0 0 transparent; height: 32px; position: absolute; right: -120px; top:-310px; width: 540px; z-index: 99"></div>
其他图像也以相同的命名约定保存在同一文件夹中,但仍然未交换图像。。。。
当我通过谷歌搜索图片搜索我的网站时,我没有在callrail帐户中交换bt,它维护了我通过谷歌有机搜索的日志。888-997-49826分钟前Google Organic我想根据callrail日志交换图像。所以请建议同样的解决方案