我正在使用 Wistia 的 Turnstile 在视频结尾捕获电子邮件。问题是我想在用户点击提交后重定向到另一个页面。该消息将请求检查电子邮件以确认双重选择加入。
我尝试使用 2 种嵌入类型但没有成功。
框架:
<iframe src="//fast.wistia.net/embed/iframe/7zu6ze7v40?videoFoam=true" allowtransparency="true" frameborder="0" scrolling="yes" class="wistia_embed" name="wistia_embed" allowfullscreen mozallowfullscreen webkitallowfullscreen oallowfullscreen msallowfullscreen id="my_wistia_video"></iframe>
<script src="//fast.wistia.net/assets/external/iframe-api-v1.js"></script>
<script>
wistiaEmbed = document.getElementById("my_wistia_video").wistiaApi;
wistiaEmbed.bind("conversion", function(type, val) {
window.location.href == "http://the_page";
});
</script>
接口:
<div id="wistia_7zu6ze7v40" class="wistia_embed" style="width:640px;height:508px;"> </div>
<script charset="ISO-8859-1" src="//fast.wistia.com/assets/external/E-v1.js"></script>
<script>
wistiaEmbed = Wistia.embed("7zu6ze7v40", {
videoFoam: true
});
wistiaEmbed.bind("conversion", function(type, val) {
window.location.href == "http://the_page";
});
</script>
任何提示或建议?