问题
I'm using the following code to track when a user exits a page on my site:
//track on page exit
function storeData(){
_gaq.push(['_trackEvent', 'Application Form', 'exit-form_application_', '', 4, false]);
}
$(window).on('unload',storeData);
However, I don't want to trigger the event when the form is submitted, therefore how could I prevent this?
回答1:
This worked for me:
$(window).bind('beforeunload', function() {
_gaq.push(['_trackEvent', 'Application Form', 'exit-form_application_', '', 4, false]);
});
$("#formID").submit(function(){
$(window).unbind('beforeunload');
});
来源:https://stackoverflow.com/questions/16565433/google-analytics-track-event-on-page-exit-except-form-submission