0

我已经使用以下参数设定了分析目标:

Target type: Event
Category (matching): form
Action (matching): test
Label (matching): sent
Value: nothing

我有这个分析推动:

<script type="text/javascript">
_gaq.push(['_trackEvent', 'form', 'test', 'sent', '*dynamic_URI*']);
</script>

这行得通吗?*dynamic_URI* 会被注册吗?

4

2 回答 2

0

谢谢您的回答!:)

我为我的目标做了一些改变,希望能奏效。

Type: URL Destination
Goal URL: /form/test/*
Match type: Regular Expression Match

还有我的 javascript:

<script type="text/javascript">
_gaq.push(['_trackPageview', '/form/test/*dynamic_URI*']);
</script>
于 2013-03-01T17:11:06.583 回答
0

来自https://developers.google.com/analytics/devguides/collection/gajs/eventTrackerGuide

_trackEvent(category, action, opt_label, opt_value, opt_noninteraction)    

value (optional)
An integer that you can use to provide numerical data about the user event.

因此,您不能将 url 作为第四个(“值”)参数传递。

据我所知,value 参数旨在帮助计算 adwords 投资回报率(为非电子商务事件分配 $$ 值)。

于 2013-03-01T08:29:28.207 回答