gpt4 book ai didi

javascript - Wistia Javascript API - 重定向到确认页面的转换事件

转载 作者:行者123 更新时间:2023-12-03 12:23:44 24 4
gpt4 key购买 nike

我正在使用 Wistia 的 Turnstile 来捕获视频末尾的电子邮件。问题是我想在用户单击提交后重定向到另一个页面。该消息将请求检查电子邮件以确认双重选择加入。

我尝试使用 2 种嵌入类型,但没有成功。

IFrame:

<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>

API:

<div id="wistia_7zu6ze7v40" class="wistia_embed" style="width:640px;height:508px;">&nbsp;</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>

有什么提示或建议吗?

最佳答案

看起来您正在将比较运算符( bool 运算符)与 == 一起使用,并且您需要在该位置使用单个 =只需在示例中设置 window.location.href 即可。如果您对比较运算符的更多信息感到好奇,请查看 this W3 page .

无论如何,我推荐这个嵌入:

<div id="wistia_7zu6ze7v40" class="wistia_embed" style="width:640px;height:508px;">&nbsp;</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>

关于javascript - Wistia Javascript API - 重定向到确认页面的转换事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24319845/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com