作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在 jquery 移动页面中有一个子页面,我想在其中插入 att Google adwords 转换 cookie。但是使用 Adwords 中的传统代码段是行不通的。在 Android 上,它甚至会使页面变为空白。
以前有人做过吗?
最佳答案
您稍后可能会通过执行以下操作在页面上加载转换脚本:
(function(){
var s=document.getElementsByTagName('script')[0];
var ga=document.createElement('script');
ga.type='text/javascript';
ga.async=true;
ga.src='http://www.googleadservices.com/pagead/conversion.js';
s.parentNode.insertBefore(ga,s);
})();
或者使用 jQuery 函数来加载类似于上述函数的脚本。事实证明,您不能以这种方式包含 conversion.js
脚本,因为它使用 document.write
在页面上写入 img 标签。因为它使用 document.write
一些浏览器会从页面中删除所有内容并用 document.write
的输出替换内容,在这种情况下是一个空的 gif。
您最好使用 google 提供的默认标记来标记转化。如果您需要在不刷新页面的情况下加载它,只需将 iframe 打开到包含此跟踪代码的页面即可。
<script type="text/javascript">
var google_conversion_id = 1234567890;
var google_conversion_language = "en_US";
var google_conversion_format = "1";
var google_conversion_color = "666666";
var google_conversion_label = "Purchase";
if (10.0) {
var google_conversion_value = 10.0
}
</script>
<script type="text/javascript" src="http://www.googleadservices.com/pagead/conversion.js">
</script>
<noscript>
<img height=1 width=1 border=0
src="http://www.googleadservices.com/pagead/conversion/1234567890/?value=10.0&label=Purchase&script=0">
</noscript>
当然这只是一个例子。您应该使用您自己的代码,该代码具有您唯一的 conversiod_id。
关于jquery-mobile - jquery 移动子页面上的 Google adwords 转换跟踪,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9410469/
我是一名优秀的程序员,十分优秀!