我有一个谷歌表单,向谷歌电子表格提交答案。我已将此表格放在我们网站上的 IFRAME 中。
现在我想添加一个脚本来检测何时在这个 iframe 中提交了 Google 表单。这应该会激活谷歌分析中的转换像素。
我已经搜索了一段时间,似乎找不到正确的答案。
我的谷歌表单包含 2 个页面 + 1 个提交页面所以我尝试计算 iframe 是否检测到 3 个加载时间。而不是警报,我想重定向到带有转换像素的感谢页面。
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script>
count = 0;
$('iframe').load(function(){
count++;
if(count == 3)
alert("activate pixel");
});</script>
</head>
<body>
<iframe id="iframe" src="[LINK TO GOOGLE FORM]" width=100% height="1500" frameborder="0">
<iframe>
</body>
</html>