0

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

使用谷歌分析我想跟踪:

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

我可以,如果可以,我如何使用 Google Analytics 来实现它?

4

1 回答 1

0

你可能想看看这个,把它加为书签:banner-clicks-monitoring-using-google-analytics

您可以使用 google 的自定义 url 来创建一个活动,然后您可以使用“自定义”url 参数,就像&selecteditem=您可以使用 php 或 javascript 来查找所需的值一样,您可以构建自定义 url+参数

链接:创建自定义 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']);"
于 2013-04-11T18:22:51.030 回答