这给了我:"脚本意外结束" (最后一行)。
可能是什么问题?
(document).ready(function(){
$(".btn btn-primary").click(function() {
chooseIngredient(1);
chooseIngredient(2);
chooseIngredient(3);
alert("veikia");
});
}
谢谢!
答案 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(