我试图将表单上的 2 个隐藏输入字段中的值发送到在谷歌分析中创建的 2 个自定义维度,但我不知道在提交表单时如何发送这些值。我也在使用重力形式。
谷歌分析中创建的维度是contactID和locationID:
我的代码如下所示:
<input name='input_4' id='input_6_4' type='hidden' class='gform_hidden' value='123456' />
<input name='input_25' id='input_6_25' type='hidden' class='gform_hidden' value='987654' />
jQuery(document).ready(function(){
jQuery('#gform_6').submit(function(e) {
var form = this;
var contactID = $('#input_6_4').val();
var locationID = $('#input_6_25').val();
e.preventDefault(); // disable the default submit action
ga('set', 'contactID', contactID);
ga('set','locationID', locationID);
$(':input', this).attr('disabled', true);
setTimeout(function() {
form.submit();
}, 1000);
});
});
感谢任何人的帮助。