gpt4 book ai didi

javascript - JQuery 函数未定义

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

this.slideUpComm = function (){
$("#Day-events-content p").addClass("hidden").slideUp("fast");
}
this.showhideEvents = function() {
$("#Day-events-content").on("click", ".eventsToggle", function() {
var obj = $(this).next();
if ($(obj).hasClass("hidden")) {
slideUpComm();
$(obj).removeClass("hidden").slideDown();
} else {
$(obj).addClass("hidden").slideUp();
}
});
}

我想使用slideUpComm作为我在不同事件中包含的函数,但控制台返回Uncaught ReferenceError:slideUpComm未定义。我应该如何将函数传递给函数?我应该使用回调吗?

function dateObj() {
this.d = new Date();
this.day = this.d.getDate();
this.numDay = this.d.getDay();
this.month = parseInt(this.d.getMonth());
this.year = this.d.getFullYear();

this.slideUpComm = function (){

}
this.showhideEvents = function() {

});
}
}

我的对象如上所示。

最佳答案

问题是 slideUpComm 是对象的成员...因此您需要使用对象引用来调用该方法

//create a closure varaible to hold the reference to the instance
var self = this;
this.slideUpComm = function (){
$("#Day-events-content p").addClass("hidden").slideUp("fast");
}
this.showhideEvents = function() {
$("#Day-events-content").on("click", ".eventsToggle", function() {
var obj = $(this).next();
if ($(obj).hasClass("hidden")) {
//slideUpComm is a instance property so access it using the instance
self.slideUpComm();
$(obj).removeClass("hidden").slideDown();
} else {
$(obj).addClass("hidden").slideUp();
}
});
}

关于javascript - JQuery 函数未定义,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20607233/

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