gpt4 book ai didi

javascript - 在 jQuery 方法中使用 this

转载 作者:行者123 更新时间:2023-11-28 12:18:14 24 4
gpt4 key购买 nike

我在 jQuery 方法中捕获对象数据时遇到问题:

this.start = function() {
var prepend = '<img id = "' + this.imageList[0].name + '" class = "desktop_image_slider_prepended_image" src = "res/img/' + this.imageList[0].name + '.png"></img>';
$("#desktop_image_slider").prepend(prepend);
this.boxList.shift(this.imageList[0]);
$("#" + this.boxList[this.boxList.length-1].name).animate({"width":"0%"}, 500);
$("#" + this.imageList[0].name).animate({"width":"11.1111111111%"}, 500, function() {
$("#" + this.boxList[this.boxList.length-1].name).remove();
this.imageList.push(this.boxList[this.boxList.length-1]);
this.boxList.splice(this.boxList.length-1, 1);
$timeout(function() {
this.start();
}, 1000);
});
}

它抛出未定义的错误。显然它是从 jQuery 中获取一些东西,而不是从我的方法中获取。有没有办法访问我的方法?

谢谢!

最佳答案

尝试将对象 this 作为函数中的参数传递。

关于javascript - 在 jQuery 方法中使用 this,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44553224/

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