2013-01-15 110 views
0

我在代碼中遇到了小問題,我確定這只是我無法找到的。錯誤「未捕獲的SyntaxError:意外的標識符」

有人可以幫助我嗎?

我得到這個:

Uncaught SyntaxError: Unexpected identifier

$(document).ready(function(){ 
    $('#zone1').mouseover(function(){ 
     $('#cercle2-1').fadeIn(200); 
    } 
    $('#zone1').mouseout(function(){ 
     $('#cercle2-1').fadeOut(200); 
    } 
}); 

預先感謝您。

回答

1

該代碼缺少兩個右括號來關閉函數調用。

$(document).ready(function(){ 
     $('#zone1').mouseover(function(){ 
     $('#cercle2-1').fadeIn(200); 
     }); //Need right paren and semi to finish statement 
     $('#zone1').mouseout(function(){ 
     $('#cercle2-1').fadeOut(200); 
     }); //Need right paren and semi to finish statement 
    }); 
+0

謝謝......我真是個白癡:) – Clemeeent

+0

@Clemeent很高興我能幫到你。別擔心它發生在每個人身上,訣竅在於繼續前進。並非所有事情都在第一次嘗試中發生 –

+0

@KevinBowersox也許你也可以顯示OP,他可以鏈接方法,而不是兩次使用選擇器。 – andlrc

相關問題