gpt4 book ai didi

Javascript:未捕获类型错误:对象不是函数

转载 作者:行者123 更新时间:2023-11-28 20:13:24 25 4
gpt4 key购买 nike

我有这段代码:

$(document).ready( function(){
$(".cb-enable").click(function(){
$("#repetitive").show();
var parent = $(this).parents('.switch');
$('.cb-disable',parent).removeClass('selected');
$(this).addClass('selected');
$('.checkbox',parent).attr('checked', true);
$("#repetitiveHidden").empty();
$("#repetitiveHidden").val("true");
});
$(".cb-disable").click(function(){
$("#repetitive").hide();
var parent = $(this).parents('.switch');
$('.cb-enable',parent).removeClass('selected');
$(this).addClass('selected');
$('.checkbox',parent).attr('checked', false);
$("#repetitiveHidden").empty();
$("#repetitiveHidden").val("false");
});
$(".overnight-enable").click(function(){
var parent = $(this).parents('.switch');
$('.overnight-disable',parent).removeClass('selected');
$(this).addClass('selected');
$('.checkbox',parent).attr('checked', true);
$("#overnightHidden").empty();
$("#overnightHidden").val("true");
});
$(".overnight-disable").click(function(){
var parent = $(this).parents('.switch');
$('.overnight-enable',parent).removeClass('selected');
$(this).addClass('selected');
$('.checkbox',parent).attr('checked', false);
$("#overnightHidden").empty();
$("#overnightHidden").val("false");
});
$(".rep-daily").click(function(){
var parent = $(this).parents('.switch');
$('.rep-weekly',parent).removeClass('selected');
$(this).addClass('selected');
$('.checkbox',parent).attr('checked', true);
$("#reccurType").empty();
$("#reccurType").val("true");
});
$(".rep-weekly").click(function(){
var parent = $(this).parents('.switch');
$('.rep-daily',parent).removeClass('selected');
$(this).addClass('selected');
$('.checkbox',parent).attr('checked', false);
$("#reccurType").empty();
$("#reccurType").val("false");
});
$(".rep-cycle").click(function(){
var parent = $(this).parents('.switch');
$('.rep-endDate',parent).removeClass('selected');
$(this).addClass('selected');
$('.checkbox',parent).attr('checked', true);
$("#reccurWay").empty();
$("#reccurWay").val("true");
$("#endDate").hide();
$("#cycle").show();
});
$(".rep-endDate").click(function(){
var parent = $(this).parents('.switch');
$('.rep-cycle',parent).removeClass('selected');
$(this).addClass('selected');
$('.checkbox',parent).attr('checked', false);
$("#reccurWay").empty();
$("#reccurWay").val("false");
$("#cycle").hide();
$("#endDate").show();
});

})(jQuery);

在这一行:

})(jQuery);

我遇到错误 Uncaught TypeError: object is not a function请帮忙

最佳答案

只需删除此:

 })(jQuery);

 });

因为你调用的不是匿名函数,而是准备好的文档,不需要这样直接调用。

关于Javascript:未捕获类型错误:对象不是函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19548851/

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