gpt4 book ai didi

javascript - 了解插件的概念 - $/jQuery 未定义

转载 作者:行者123 更新时间:2023-11-30 08:49:57 24 4
gpt4 key购买 nike

我写了一个插件,语法如下:

(function($){
$.fn.samplePlugin = function() {
return this.each(function() {
//My logic here
});
};
})(jQuery);

然后我调用加载为

 $(document).ready(function(){
$('#sample').samplePlugin();
});

现在我的控制台出现了这两个错误:

ReferenceError: jQuery is not defined
ReferenceError: $ is not defined

你能告诉我我遗漏了什么吗?当你创建或包含插件时 $ 注释的使用流程应该是什么?

谢谢,

最佳答案

在您的插件之前包含 jQuery。

关于javascript - 了解插件的概念 - $/jQuery 未定义,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18757517/

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