// JavaScript Document $(window).on('load',function(){ /***event**/ $('.cev').on('click',function(e){ _cat = $(this).attr('data-cat'); _label = $(this).attr('data-label'); if($(this).hasClass('fmovie-pc')){ _cat = 'movie'; _label = 'footerlink'; } if($(this).hasClass('fmovie-sp')){ _cat = 'movie'; _label = 'spmenu'; } gtag('event', 'click', { 'event_category': _cat, 'event_label': _label, 'value': '1' }); console.log(_cat+':'+_label); }); });