问题描述:当输入的内容和列表中的sku值相同时复核数量加一,当输入内容和表中的sku匹配不上时弹出‘查无此商品信息’,为什么有时候if、else部分都会弹出,有时候就正常,求指教 用‘全局变量’flag无效,求指教
//enter
$('.confirm_review').click(function () {
$('tbody tr td:nth-child(2)').each(function(index,val){ if($(this).html()==$('.nav-input').val()){ var count = $(this).parent().children().eq(-2).html(); count++; $(this).parent().children().eq(-2)[0].innerHTML= count; }else{ layer.msg('订单中无此条码的商品',{icon:5}); } });
});
相关分类