如何使用 Google Analytics 跟踪特定事件?

How To Event track a particular event with Google Analytics?

我没有单独的感谢 you/confirmation 页面来跟踪来自特定目标网页的目标转化。因此,我需要事件跟踪着陆页的 "Submit Form" 按钮,以计算该页面的表单提交次数作为目标转化次数。

如何事件跟踪 "Submit Form" 按钮,以便在有人提交表单时它会显示在“目标完成”页面上。

将 google 分析脚本保存在文件 analyticstracking.php 中,然后按如下方式包含该文件:

<?php include_once("analyticstracking.php"); ?> 

要保存在 analyticstracking.php 中的代码可以从 google 分析站点找到。

这是 Google 开发人员 link 的示例 Google Analytics Guide

在你的link中使用这个:

onClick="ga('send', 'event', 'Button', 'Click', 'Purchase Details');"

您可以在活动结束后编辑 3 个选项,然后您必须进入 Google 分析并根据活动设置目标(相当容易做到)

您将在此处了解如何创建基于特定事件而非页面浏览量的目标:

https://support.google.com/analytics/answer/1032415?hl=en#goal_types

为了发送目标预期的事件,我建议您使用这个 jQuery 插件(我是作者),它是为 Google 分析轻松设置事件跟踪而构建的:

https://github.com/DiegoZoracKy/google-analytics-event-tracking.

您的代码的结果将如下所示:

$.googleAnalyticsEventTracking({
    targetSelector: '#id-of-the-form', // it can be any jQuery selector
    events: {
        eventType: 'submit',
        gaEventData: {
            category: 'Form', // The same as you will set on the Goal setup
            action: 'Sent', // The same as you will set on the Goal setup
            label: 'Sign Up' // The same as you will set on the Goal setup
        }
    }
});