Closed. This question is not reproducible or was caused by typos。它当前不接受答案。












想改善这个问题吗?更新问题,以便将其作为on-topic用于堆栈溢出。

3年前关闭。



Improve this question




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

可能是什么问题呢?
(document).ready(function(){

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

谢谢!

最佳答案

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

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

07-26 05:36