我有一个索引页面,我打算在下面放置一个Subcribe按钮。当观众键入他们的电子邮件并单击按钮时。该记录应该是允许我跟踪的Google分析事件。但是,我从此获取数据时出错。代码如下:
代码如下:
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-87810245-1', 'auto');
ga('send', 'pageview');
</script>
<script>
$('#sub-form').on('post', function(event) {
// Prevent the browser's default form submission action.
event.preventDefault();
ga('send', 'event', {
eventCategory: 'subscribe',
eventAction: 'post',
eventLabel: 'subscribe sent',
hitCallback: function() {
$('sub-form').trigger('post');
}
});
});
</script>
按钮的代码:
<div class="jumbotron text-center">
<p>We specialize in all flower arrangements</p>
<form class="form-inline" id="sub-form">
<div class="input-group">
<input type="email" class="form-control" size="50" placeholder="Email Address" required>
<div class="input-group-btn">
<button type="post" class="btn btn-danger" id="post" onclick="ga('send', 'event', 'subscribe', 'post', 'subscribe sent', 10);">Subscribe</button>
</div>
</div>
</form>
</div>
表单结果是我的另一个事件。
答案 0 :(得分:0)
首先启动脚本,然后调用$('#sub-form')。检查你的jquery初始化。
顺便说一句:你看过这个工具吗? www.customerlabs.co - 它可以在不到5分钟的时间内完成工作而无需编码。答案 1 :(得分:0)
我删除表单类后现在正在运行。我将其更改为<form action="thankyou.html" id="sub-form">