-2
有問題 - 沒有功能的錯誤,我的代碼,這就是:不是一個函數錯誤 - JavaScript的ES6類結構
import $ from 'jquery';
import gsap from 'greensock';
class IntroAnimations{
constructor(){
this.ctaEnter = $('#cta-enter');
this.loadContent = $('.center-h-v');
this.tlLoading = new TimelineLite();
this.animationTime = .5;
this.ctaEnter.click(function(){
this.removeLoadContent(); //<- error is here
})
}
removeLoadContent(){
TweenLite.to(this.loadContent, this.animationTime, {autoAlpha: 0})
}
}
export default IntroAnimations;
錯誤是,當我打電話this.removeLoadContent(); 有人可以幫我解釋爲什麼這會導致錯誤?
謝謝。
這個工作,但如何和爲什麼? – Harp
@harp你可能應該閱讀更多關於javascripts的內容...... –