如何解决Hubspot 表单:运行 onFormReady 函数时出错
我在我的 wordpress 网站中嵌入了一个 hubspot 表单,我需要在加载表单时运行一段脚本。这是要求,但我遇到了一个错误,它在控制台中显示如下。
Hubspot Form: There was an error when running your onFormReady function
我的 hubspot 代码是:
<script>
hbspt.forms.create({
region: "xxxxx",portalId: "xxxxxxx",formId: "xxxxxxxxxxxxxxxxx",onFormSubmit: function($form) {
console.log("form is submitted already");
//some other stuff as well
jQuery('.hubspot_form_outer_class').hide();
},onFormReady: function($form) {
console.log("success");
$("div.input > select").attr("disabled","disabled");
}
});
</script>
此处 onFormSubmit
函数工作正常(其中的 jQuery 脚本也没有问题),但函数 onFormReady
不起作用。我只需要让这个功能工作。
这里有什么问题?有人有想法吗?非常感谢任何帮助/信息。
谢谢。
更新:jQuery("div.input > select");
解决方法
我认为问题在于这行代码
$("div.input > select").attr("disabled","disabled");
尝试将其更改为
jQuery("div.input > select").attr("disabled","disabled");
还要确保在运行此脚本的页面上包含 jQuery。
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。