当有人单击我的网站上的按钮(ID为“ rum_sst_tab”)时,我需要启动一个onclick函数,然后启动另一个计算Google转化(TO_CHAR( MIN(ioh.mdstamp), 'DD-MON-YY hh24:mi:ss')
)的函数
我已经为onclick尝试了一些jQuery选项,但是它们对我不起作用。这是一个wordpress网站,我正在尝试点击的id位于WordPress插件中-不确定是否会使事情变得复杂。
gtag_report_conversion()
这是连接到gtag函数的代码的另一部分:
document.getElementById("rum_sst_tab").onclick = gtag_report_conversion();
我也在控制台中收到此错误:
(索引):1251未捕获的TypeError:无法将属性'onclick'设置为null
答案 0 :(得分:-1)
正确的函数调用方式是:
document.getElementById('rum_sst_tab').onclick =
function(){
gtag_report_conversion();
}
(外观:Call a function with the submit button in HTML)
注意:
建议您等待9到10个小时,然后再检查转化率。这就是Google Analytics(分析)和Google Ads开始一起工作所需要的时间。
(https://wpforms.com/how-to-track-form-submissions-as-google-adwords-conversions/的最终想法)