gpt4 book ai didi

javascript - 页面停留时间的 Google Analytics 事件

转载 作者:行者123 更新时间:2023-11-29 21:42:27 25 4
gpt4 key购买 nike

我目前正在使用以下代码将点击事件发送到 Google Analytics:

$(document).ready(function() {
$('#button').on('click', function() {
ga('send', 'event', 'button', 'click', 'nav-buttons');
});
});

它工作得很好。

但是,我希望该值是用户在页面上停留的时间的分钟数。

这意味着,它将跟踪用户点击按钮所用的分钟数。

最佳答案

$(document).ready(function() {

//current time at document ready
var past = new Date().getTime();

$('#button').on('click', function() {

//how much minutes passed when button clicked
timeElapsedInMin = Math.floor((new Date().getTime() - past) / 60000);
ga('send', 'event', 'button', 'click', 'nav-buttons', timeElapsedInMin);
});

});

关于javascript - 页面停留时间的 Google Analytics 事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32270699/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com