JS:脚本意外结束

时间:2017-12-31 14:29:02

标签: javascript syntax-error

这给了我:"脚本意外结束" (最后一行)。

可能是什么问题?

(document).ready(function(){

    $(".btn btn-primary").click(function() {
        chooseIngredient(1);
        chooseIngredient(2);
        chooseIngredient(3);
        alert("veikia");
    });
}

谢谢!

1 个答案:

答案 0 :(得分:1)

$(document).ready(function(){ // USE $

    $(".btn btn-primary").click(function() {
        chooseIngredient(1);
        chooseIngredient(2);
        chooseIngredient(3);
        alert("veikia");
    });
}); // HERE you must have ) opened by ready(