如何使用 Google Analytics 跟踪表单提交
How to track a form submission using Google Analytics
我想跟踪一个简单的联系我们表单提交,我使用的代码是,
form action="/contact-us/#wpcf7-f2017-p2044-o1" method="post" **onsubmit = "ga('send', 'event', 'Contact Form Submission', 'post', location.pathname, {
nonInteraction: true});"** class="wpcf7-form sent" novalidate="novalidate"
它不起作用并出现此错误,
Uncaught SyntaxError: Unexpected token ILLEGAL VM300:1
Google 分析帐户中的其他所有内容都运行良好。可能是开发者把代码实现在一个函数里面?
如有任何帮助,我们将不胜感激。
谢谢
你的字符串中有换行符
"ga('send', 'event', 'Contact Form Submission', 'post', location.pathname, {
nonInteraction: true});"
删除它使其工作:
"ga('send', 'event', 'Contact Form Submission', 'post', location.pathname, {nonInteraction: true});"
问题解释在这里:
JavaScript string with new line - but not using \n
我想跟踪一个简单的联系我们表单提交,我使用的代码是,
form action="/contact-us/#wpcf7-f2017-p2044-o1" method="post" **onsubmit = "ga('send', 'event', 'Contact Form Submission', 'post', location.pathname, {
nonInteraction: true});"** class="wpcf7-form sent" novalidate="novalidate"
它不起作用并出现此错误,
Uncaught SyntaxError: Unexpected token ILLEGAL VM300:1
Google 分析帐户中的其他所有内容都运行良好。可能是开发者把代码实现在一个函数里面?
如有任何帮助,我们将不胜感激。
谢谢
你的字符串中有换行符
"ga('send', 'event', 'Contact Form Submission', 'post', location.pathname, {
nonInteraction: true});"
删除它使其工作:
"ga('send', 'event', 'Contact Form Submission', 'post', location.pathname, {nonInteraction: true});"
问题解释在这里: JavaScript string with new line - but not using \n