gpt4 book ai didi

javascript - 从 jQuery 回调函数访问外部对象

转载 作者:行者123 更新时间:2023-11-30 13:42:01 26 4
gpt4 key购买 nike

场景:

My_Object = {

my_div: "#mydiv",

my_method: function()
{
$(this.my_div).fadeOut("slow", function() { $(this.my_div).fadeIn("slow"); });
}

}

“this.my_div”在 fadeIn 调用中未被识别,因为“this”不再指向原始对象。如何将原始对象传递给回调函数?

最佳答案

将“this”存储在临时变量中:

My_Object = {

my_div: "#mydiv",

my_method: function()
{
var tmp = this;
$(this.my_div).fadeOut("slow", function() { $(tmp.my_div).fadeIn("slow"); });
}

}

关于javascript - 从 jQuery 回调函数访问外部对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1809290/

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