gpt4 book ai didi

javascript - JS : Access from a property to another property in the same object

转载 作者:行者123 更新时间:2023-11-29 21:41:16 25 4
gpt4 key购买 nike

<分区>

我将用一个例子来解释我的问题:

我有一个名为“ExampleObj”的对象,它返回 3 个属性“init”、“age”、“weight”,我需要从年龄访问到体重,但由于某些原因我不能这样做。您能解释一下为什么以及如何才能获得正确的结果吗?

编辑:这是当前代码,self.tabAnimation() 正在为 dom 准备就绪,但是......即使我使用 () 也无法处理“点击”;检查代码中的 ****,是触发我错误的行。

 return {

init: function() {
var self = this;
tabs.init();
self.tabAnimation();

tabToggler.on('click', self.tabAnimation );

},

tabAnimation: function() {
var self = this;

var activeTabBars = function() {
console.log('lol');
tabItem.find(bars).each(function() {
var me = this;
****self.animateBars(me,1000)****
});
}

animateOnVisible.init(tabItem, activeTabBars);

},

animateBars : function(el, duration) {
var percentage = $(el).data('value') + "%";
$(el).animate({
'width': percentage
}, duration);
}

非常感谢

大卫

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