您好我想在我的Facebook代码中安装按钮点击事件:
var mongoose = require('mongoose');
mongoose.connect('mongodb://localhost/starbucks', { useMongoClient:
true });
var db = mongoose.connection;
db.on('error', console.error.bind(console, 'connection error:'));
db.once('openUri', function() {
// we're connected!
});
我的网站没有用于跟踪表单填充的感谢页面,但它确实有一个标记为“开始使用”的提交按钮。
我相信网站上的提交按钮定义如下:
<!-- Facebook Pixel Code -->
<script>
!function(f,b,e,v,n,t,s){if(f.fbq)return;n=f.fbq=function(){n.callMethod?
n.callMethod.apply(n,arguments):n.queue.push(arguments)};if(!f._fbq)f._fbq=n;
n.push=n;n.loaded=!0;n.version='2.0';n.queue=
[];t=b.createElement(e);t.async=!0;
t.src=v;s=b.getElementsByTagName(e)[0];s.parentNode.insertBefore(t,s)}
(window,
document,'script','https://connect.facebook.net/en_US/fbevents.js');
fbq('init', 'myid'); // Insert your pixel ID here.
fbq('track', 'PageView');
</script>
<noscript><img height="1" width="1" style="display:none"
src="https://www.facebook.com/tr?id='myid'&ev=PageView&noscript=1"
/></noscript>
<!-- DO NOT MODIFY -->
<!-- End Facebook Pixel Code -->
这样的事情会起作用吗?
<button type="submit" class="btn btn-grn btn-block">Get Started</button>
有人可以协助跟踪此按钮点击作为自定义转化或完整注册Facebook活动吗?
我知道如果我需要跟踪点击次数,我可以为像素添加一个事件监听器,但我仍然是Javascript的新手。
非常感谢任何帮助或建议!!