嗨,我的代码的第 137 行出现“未捕获的 SyntaxError:意外令牌}”错误
function removeItem(sender, itemCode){
$.ajax({
url: 'cart_update.php?removep=' + itemCode,
success: function(){
var parent = $(sender).parent();
parent.remove();
});
} ////137
}
一些帮助?