gpt4 book ai didi

jquery - 未捕获的类型错误 : Cannot read property 'post' of undefined Even JQuery included

转载 作者:太空宇宙 更新时间:2023-11-04 14:36:44 25 4
gpt4 key购买 nike

即使我在我的页面中包含了 JQuery,我也会收到这个错误...

Uncaught TypeError: Cannot read property 'post' of undefined 

导致错误的行是

 $.post("infusionsoft/infusion_soft_interaction.php", 
{customerName: 'customerName', customerEmail: 'customerEmail'},
function(data) {
alert(data);
});

这是我页面的 HEAD 部分。

http://pastebin.com/xK8dWQ1U

最佳答案

我认为问题出在您对 jQuery 使用无冲突模式这一事实。

您需要通过jQuery 引用它。

jQuery.post("infusionsoft/infusion_soft_interaction.php", ...

或者用一个函数包装你的代码

(function($){
$.post("infusionsoft/infusion_soft_interaction.php", ...
}(jQuery))

关于jquery - 未捕获的类型错误 : Cannot read property 'post' of undefined Even JQuery included,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24774527/

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