我想更改我的類名我的頁面滾動400從feature-animate div的頂部但我收到此錯誤。未捕獲TypeError:無法讀取未定義錯誤的屬性'top'
請參閱此鏈接,我的代碼
https://jsbin.com/zafove/edit?html,js,output
Uncaught TypeError: Cannot read property 'top' of undefined error
if(wScroll > $('.feature-animate').offset().top - 400){
$('.feature-animate').each(function(j){
setTimeout(function(){
$('.feature-animate').eq(j).addClass('isShowing');
},100 * (i+1));
在這行之前,你可以在你的代碼中打印'console.log($('。feature-animate'))'並告訴我它在打印什麼? – gurvinder372
未捕獲的SyntaxError:意外的令牌ILLEGAL –
是在document.ready事件之後調用此代碼嗎?調用此代碼之前,您的DOM是否已經加載? – gurvinder372