我剛剛寫了一個小的if,else if循環,並在控制檯中出現一個unexpected token ';'
錯誤。如果我在每個$(this).css('top', top-3"em");
聲明後刪除;
,我會得到另一個錯誤,說明else if
之前的}
是意外!如果,否則如果循環中斷
這是我的循環,任何想法,我可能會誤入歧途?
$('div.result').each(function() {
$(this).css('top', top+"em");
top = top + 8;
resultcount = resultcount - 1;
if(resultcount=5) {
$(this).css('top', top-3"em");
} else if(resultcount=4) {
$(this).css('top', top-7"em");
} else if(resultcount=3) {
$(this).css('top', top-14"em");
} else if(resultcount=2) {
$(this).css('top', top-20"em");
} else(resultcount=1) {
$(this).css('top', top-30"em");
}
});
有一堆語法錯誤,從無效比較到沒有字符串集中。 – adeneo 2013-05-01 14:33:11
@Borsel你也是一個點擊一個名爲** If的鏈接,否則如果循環中斷**;) – 2013-05-01 14:38:42