0

当前使用的 jQuery

$("#like_button").live("click", function(){
    var status = $(this).data("status");
    var id = $(this).data("id");
    var count = $(this).html();

        if(status === 1){
            like(id);
            $(this).removeClass("likes");
            $(this).addClass("liked");
            count++;
            $(this).html(count);
        }elseif(status === 2){
            like(id);
            $(this).removeClass("liked");
            $(this).addClass("likes");
            count--;
            $(this).html(count);
        }   else   {
            // do nothing
        }

        return false;

});

错误

Uncaught SyntaxError: Unexpected token { (Line 529)

这是下面的这一行,

}elseif(status === 2){

如果您需要更多信息来帮助我,请务必询问。

4

3 回答 3

12

JavaScript 使用else if,而不是elseif.

于 2012-09-12T20:18:09.630 回答
1

阅读本教程以了解有关 if else 语句的更多信息http://www.w3schools.com/js/js_if_else.asp

于 2012-09-12T20:22:02.213 回答
1

这个说法

}elseif(status === 2){

必须

 }else if(status === 2){

在elseif之间缺少一个空格

于 2012-09-12T20:31:17.747 回答