gpt4 book ai didi

javascript - $ 不是 Drupal 上的函数错误

转载 作者:行者123 更新时间:2023-11-30 08:23:47 26 4
gpt4 key购买 nike

我的代码在本地环境中运行良好,但在网站上运行不正常。我不明白我在这里错过了什么。

代码:

jQuery(document).ready(function(){
'use strict';
//============================== COUNTER-UP =========================
$('.counter').counterUp({
delay: 10,
time: 2000
});
});

错误信息:

Uncaught TypeError: $ is not a function
at HTMLDocument.<anonymous> (custom.js?p4xosk:4)
at fire (jquery.js?v=1.10.2:3048)
at Object.fireWith [as resolveWith] (jquery.js?v=1.10.2:3160)
at Function.ready (jquery.js?v=1.10.2:433)
at HTMLDocument.completed (jquery.js?v=1.10.2:104)

最佳答案

你必须定义 $ :

(function($){
$(document).ready(function(){
'use strict';
//============================== COUNTER-UP =========================
$('.counter').counterUp({
delay: 10,
time: 2000
});
});
})(jQuery);

关于javascript - $ 不是 Drupal 上的函数错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49060058/

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