0

我有一项新功能会向我网站的一些访问者公开,具体取决于他们搜索的内容。

我想知道“如果该功能向他们公开,有多少人与之交互”,理想情况下是百分比。

我使用 GTM / GA 但不知道如何获得这种相对性..关于我如何做到这一点的任何想法?谢谢

4

2 回答 2

0

您可以通过多种方式跟踪这一点,一种更简单的方式是使用事件。如果您希望它具有可视化效果,您可以创建一个基于事件的目标,其中目标目标可能是交互事件。

当用户接触到新功能时,就会触发一个事件。将此配置为目标所需的事件,而目标事件可能是交互事件。

获得所有事件计数后,您可以根据需要操作数据。

于 2017-03-03T06:48:47.033 回答
0

I think the step you are missing is the detection of the elements on page. To do this create a Custom JavaScript variable (lets call it 'Detect'):

function(){
return $('#FILTER_ID).length>0
}

This function looks for whether an element with the id FILTER_ID is present on page, and returns true or false.

From here you have a number of options.

1: Create an event on page-view if Detect equals true. Create an additional event for clicks on the element. Divide clicks events by pageview events and you have your interaction ratio.

2: Create a new hit level custom dimension. In your Pageview Tag, set this custom dimension to the value - Detect. Create an event for clicks on the element. Create a session segment where Detect equals true, then divide events by pageviews and you have your interaction ratio.

于 2017-03-06T02:53:17.117 回答