gpt4 book ai didi

jquery - 未捕获的TypeError:对象不是grails中的函数(匿名函数)

转载 作者:行者123 更新时间:2023-12-02 15:31:36 26 4
gpt4 key购买 nike

在我的gsp中,我有以下代码。

$ = jQuery.noConflict();
j$(function($){
j$(document).ready(function(){
j$('#news-container').vTicker({
speed: 500,
pause: 3000,
animation: 'fade',
mousePause: true,
showItems: 1
});
j$(document).keydown(function(event) {
$("#helpLinkId").hide();
});
});
})(jQuery);

运行时,它给出了未捕获的TypeError:对象不是函数(匿名函数)。有什么解决方案?

最佳答案

您正在将jQuery分配给$而不是j$,后来您使用j$引用jQuery,但是j$没有赋值

它应该是

// instead of assigning jQuery to $ you need to assign it to j$
j$ = jQuery.noConflict();
j$(function($) {
j$(document).ready(function() {
j$('#news-container').vTicker({
speed : 500,
pause : 3000,
animation : 'fade',
mousePause : true,
showItems : 1
});
j$(document).keydown(function(event) {
$("#helpLinkId").hide();
});
});
});//there is no need to pass jQuery here

关于jquery - 未捕获的TypeError:对象不是grails中的函数(匿名函数),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18458871/

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