0

我一直在环顾四周,找不到任何关于您是否可以在 Google Analytics 中跟踪手指滑动的信息。

4

1 回答 1

1

是的,你可以这样做。jQuery Mobile 包括滑动支持

$("#the_div_id_that_is_swiped").on("swipe", function(event) {
   // it has been swiped, so track it as an event
   _gaq.push(['_trackEvent', 'Swipe', 'Landing Page Image', 'Description in here...']);
});
于 2014-05-01T17:00:33.387 回答