您好我的代码137行有“未捕获的SyntaxError:Unexpected token}”错误
function removeItem(sender, itemCode){
$.ajax({
url: 'cart_update.php?removep=' + itemCode,
success: function(){
var parent = $(sender).parent();
parent.remove();
});
} ////137
}
一些帮助?
答案 0 :(得分:1)
您在标有);
////137
您在[{1}}
上方不需要);
更正代码
////137
答案 1 :(得分:1)
请记得关闭$ .ajax前导括号:
}); ////137
}
只需添加“);”在第137行
答案 2 :(得分:1)
将其更改为:
function removeItem(sender, itemCode){
$.ajax({
url: 'cart_update.php?removep=' + itemCode,
success: function(){
var parent = $(sender).parent();
parent.remove();
});
});
}
你错过了$ .ajax();
的关闭