Google Analytics跟踪横幅和表单

时间:2013-04-11 18:18:30

标签: google-analytics tracking banner

我的网站上有5个横幅。所有这些横幅链接到一个联系页面,另一个参数。 根据单击的横幅,设置下拉列表中的项目(<select>)。

使用Google Analytics我想跟踪:

  • 点击每个按钮的次数
  • 使用他们之前选择的横幅选项提交表单的用户数

可以,如果是,我该如何使用Google Analytics实现此功能?

1 个答案:

答案 0 :(得分:0)

你可能想看一下,把它标记为:banner-clicks-monitoring-using-google-analytics

您可以使用Google的自定义网址来制作广告系列,然后您可以使用&selecteditem=这样的“自定义”网址参数,您可以使用php或javascript查找他们所需的值,您可以构建自定义网址+参数

链接:Create Custom URL - Google

找到所选下拉项目的可能的JavaScript解决方案: 使用value元素的<select>属性。例如:

// Set dropdown    
document.getElementById('your_select_id').value = '2';

// Get dropdown  
var value = document.getElementById('your_select_id').value;

alert(value);
// you would need to add or remove + add the new parameter
// once it is found you could make this into a function and
// call it on the selection change event. 

您可以采用不同的方法让Google跟踪代码完成工作。 将此添加到您的链接属性,对于您仍需要找到所选项目的表单帖子,如下所示。 为此,您需要启用“事件跟踪”,这必须在“配置文件”中设置。

onclick="_gaq.push(['_trackEvent', 'Link Sponsored', 'Clicked Sponsored']);"